You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+11-11Lines changed: 11 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -410,7 +410,7 @@ Commands are structs that must implement the Command trait.<br>
410
410
* They should return help documentation in markdown format in order to generate SDK documentation (must for PRs to duckscript official SDK).<br>
411
411
* They must implement the **run** function which holds the command logic.<br>
412
412
413
-
The run function accepts the command arguments (args array contains actual values and not original variables) and returns the command result.<br>
413
+
The run function accepts the command invocation context (args array contains actual values and not original variables) and returns the command result.<br>
414
414
The command result can be one of the following:
415
415
416
416
* Continue(Option<String>) - Tells the runner to continue to the next command and optionally set the output variable the given value.
@@ -437,11 +437,11 @@ impl Command for SetCommand {
Copy file name to clipboardExpand all lines: docs/_includes/content.md
+11-11Lines changed: 11 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -365,7 +365,7 @@ Commands are structs that must implement the Command trait.<br>
365
365
* They should return help documentation in markdown format in order to generate SDK documentation (must for PRs to duckscript official SDK).<br>
366
366
* They must implement the **run** function which holds the command logic.<br>
367
367
368
-
The run function accepts the command arguments (args array contains actual values and not original variables) and returns the command result.<br>
368
+
The run function accepts the command invocation context (args array contains actual values and not original variables) and returns the command result.<br>
369
369
The command result can be one of the following:
370
370
371
371
* Continue(Option<String>) - Tells the runner to continue to the next command and optionally set the output variable the given value.
@@ -392,11 +392,11 @@ impl Command for SetCommand {
0 commit comments