Skip to content

Commit cc1fffd

Browse files
author
ecfan
committed
Update with Standard UX
1 parent e1df0fc commit cc1fffd

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

articles/logic-apps/logic-apps-control-flow-loops.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Azure Logic Apps includes the following loop actions that you can use in your wo
1616

1717
* To repeat one or more actions on an array, add the [**For each** action](#foreach-loop) to your workflow.
1818

19-
If you have a trigger that receives an array and want to run an iteration for each array item, you can *debatch* that array with the [**SplitOn** trigger property](../logic-apps/logic-apps-workflow-actions-triggers.md#split-on-debatch).
19+
Alternatively, if you have a trigger that receives an array and want to run an iteration for each array item, you can *debatch* that array with the [**SplitOn** trigger property](../logic-apps/logic-apps-workflow-actions-triggers.md#split-on-debatch).
2020

2121
* To repeat one or more actions until a condition gets met or a state changes, add the [Until action](#until-loop) to your workflow.
2222

@@ -225,8 +225,8 @@ If you're working with your workflow's JSON definition, you can use the `Sequent
225225

226226
<a name="until-loop"></a>
227227

228-
## "Until" loop
229-
228+
## Until
229+
230230
To run and repeat actions until a condition gets met or a state changes, put those actions in an "Until" loop. Your logic app first runs any and all actions inside the loop, and then checks the condition or state. If the condition is met, the loop stops. Otherwise, the loop repeats. For the default and maximum limits on the number of "Until" loops that a logic app run can have, see [Concurrency, looping, and debatching limits](../logic-apps/logic-apps-limits-and-config.md#looping-debatching-limits).
231231

232232
Here are some common scenarios where you can use an "Until" loop:

0 commit comments

Comments
 (0)