Skip to content

Commit 132ecc2

Browse files
authored
fix: typo in doc string (#852)
1 parent 4d1e9dd commit 132ecc2

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

pdl-live-react/src/pdl_ast.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2842,7 +2842,7 @@ export interface Defs4 {
28422842
| null
28432843
}
28442844
/**
2845-
* Execute a command line, which will spawn a subprocess with the given argument vector. Note: if you need a shell script execution, you must wrap your command line in /bin/sh or somne shell of your choosing.
2845+
* Execute a command line, which will spawn a subprocess with the given argument vector. Note: if you need a shell script execution, you must wrap your command line in /bin/sh or some shell of your choosing.
28462846
*
28472847
* Example:
28482848
* ```PDL

src/pdl/pdl-schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
},
3030
"ArgsBlock": {
3131
"additionalProperties": false,
32-
"description": "Execute a command line, which will spawn a subprocess with the given argument vector. Note: if you need a shell script execution, you must wrap your command line in /bin/sh or somne shell of your choosing.\n\nExample:\n```PDL\nargs:\n- /bin/sh\n- \"-c\"\n- \"if [[ $x = 1 ]]; then echo y; else echo n; fi\"\n```",
32+
"description": "Execute a command line, which will spawn a subprocess with the given argument vector. Note: if you need a shell script execution, you must wrap your command line in /bin/sh or some shell of your choosing.\n\nExample:\n```PDL\nargs:\n- /bin/sh\n- \"-c\"\n- \"if [[ $x = 1 ]]; then echo y; else echo n; fi\"\n```",
3333
"properties": {
3434
"description": {
3535
"anyOf": [

src/pdl/pdl_ast.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -486,7 +486,7 @@ class CodeBlock(BaseCodeBlock):
486486

487487
class ArgsBlock(BaseCodeBlock):
488488
"""
489-
Execute a command line, which will spawn a subprocess with the given argument vector. Note: if you need a shell script execution, you must wrap your command line in /bin/sh or somne shell of your choosing.
489+
Execute a command line, which will spawn a subprocess with the given argument vector. Note: if you need a shell script execution, you must wrap your command line in /bin/sh or some shell of your choosing.
490490
491491
Example:
492492
```PDL

0 commit comments

Comments
 (0)