Skip to content

Commit 9afbe21

Browse files
committed
add notes about how lines are counted
1 parent 20503b4 commit 9afbe21

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

js/Documentation.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1588,7 +1588,7 @@ The following `<comparator>` values are valid: `=`, `<`, `>`, `<=`, `>=`, `!=` (
15881588

15891589
Multiple comparisons can be combined in one **If** line using the following `<conjunction>` values: `and`, `or`.
15901590

1591-
The `<optional_skip>` value allows you to specify the number of lines to skip if the criteria is not met. This value is completely optional and allows for advanced logic handling.
1591+
The `<optional_skip>` value allows you to specify the number of lines to skip if the criteria is not met. This value is completely optional and allows for advanced logic handling. When skipping lines, multi-line inputs are considered one line and comments are not considered.
15921592

15931593

15941594
| | |
@@ -1626,7 +1626,7 @@ The `<optional_skip>` value allows you to specify the number of lines to skip if
16261626
#### Loop
16271627
| | |
16281628
------------ | -------------
1629-
**Info** | Used to repeat a set of actions a specified number of times. `<lines>` is the number of actions/lines to repeat. `<times>` is the number of times to repeat the actions/lines.
1629+
**Info** | Used to repeat a set of actions a specified number of times. `<lines>` is the number of actions/lines to repeat. When counting lines, multi-line inputs are considered one line and comments are not considered. `<times>` is the number of times to repeat the actions/lines.
16301630
**Format** | `Loop <lines> <times>`
16311631
**Example** | `Loop 8 10`
16321632

@@ -1668,7 +1668,7 @@ The `<optional_skip>` value allows you to specify the number of lines to skip if
16681668
#### Skip
16691669
| | |
16701670
------------ | -------------
1671-
**Info** | Used to skip over the next `<number>` of lines in an event.
1671+
**Info** | Used to skip over the next `<number>` of lines in an event. When skipping lines, multi-line inputs are considered one line and comments are not considered.
16721672
**Format** | `Skip <number>`
16731673
**Example** | `Skip 3`
16741674

0 commit comments

Comments
 (0)