This repository was archived by the owner on Oct 18, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -381,7 +381,7 @@ type BatchResult = {
381
381
}
382
382
` ` `
383
383
384
- A batch is a list of statements (steps ) which are always executed sequentially.
384
+ A batch is a list of steps (statements ) which are always executed sequentially.
385
385
If the ` condition ` of a step is present and evaluates to false, the statement is
386
386
skipped.
387
387
@@ -403,10 +403,10 @@ type BatchCond =
403
403
404
404
Conditions are expressions that evaluate to true or false:
405
405
406
- - ` ok ` evaluates to true if the ` step ` (referenced by a 0-based index) was
406
+ - ` ok ` evaluates to true if the ` step ` (referenced by its 0-based index) was
407
407
executed successfully. If the statement was skipped, this condition evaluates to
408
408
false.
409
- - ` error ` evaluates to true if the ` step ` (referenced by a 0-based index) has
409
+ - ` error ` evaluates to true if the ` step ` (referenced by its 0-based index) has
410
410
produced an error. If the statement was skipped, this condition evaluates to
411
411
false.
412
412
- ` not ` evaluates ` cond ` and returns the logical negative.
You can’t perform that action at this time.
0 commit comments