Skip to content

Commit a887f5b

Browse files
committed
Generate branch/loop connector docs from manifests
1 parent 693a952 commit a887f5b

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

docs/connectors/branch.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@ Choose which step to execute next based on a condition or value
1111

1212
### If Condition is Met
1313

14-
Choose which step to execute next based on a condition
14+
Branch on Expression. Choose which step to execute next based on a condition.
1515

1616
| Input | Comments | Default |
1717
| --------- | ---------------------------------------------------- | ------- |
1818
| Condition | The set of conditions to satisfy in order to branch. | |
1919

2020
### If Value Equals
2121

22-
Choose which step to execute next based on a value.
22+
Branch on value. Choose which step to execute next based on a value.
2323

2424
| Input | Comments | Default |
2525
| -------------------- | --------------------------------------------------------------------------------------------------------------- | ------- |

docs/connectors/loop.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -13,18 +13,18 @@ Repeat a set of steps by iterating over items in a dataset or a fixed number of
1313

1414
Breaks out of the current Loop, causing execution to resume after the containing Loop.
1515

16-
### Repeat X Times
17-
18-
Loops over the the steps in the loop X times, or until a loop break occurs.
19-
20-
| Input | Comments | Default |
21-
| -------------------- | ----------------------------------------------------- | ------- |
22-
| Number of Iterations | The number of times to execute the steps in the loop. | 1000 |
23-
2416
### Repeat for Each
2517

26-
Loops over items, applies each step in sequence, and returns a new collection of the results. Items must be an Array or Object.
18+
Loop over items. Applies each step in sequence, and returns a new collection of the results. Items must be an Array or Object.
2719

2820
| Input | Comments | Default |
2921
| ----- | --------------------------------------------------------------------------------------------------------------------------------- | ------- |
3022
| Items | These are the items to loop over. This must be an Array (list) or Object, and should be a reference to a previous step's results. | |
23+
24+
### Repeat X Times
25+
26+
Loops over the the steps in the loop N times, or until a loop break occurs.
27+
28+
| Input | Comments | Default |
29+
| -------------------- | ----------------------------------------------------- | ------- |
30+
| Number of Iterations | The number of times to execute the steps in the loop. | 1000 |

0 commit comments

Comments
 (0)