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: articles/logic-apps/logic-apps-control-flow-loops.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -40,7 +40,7 @@ The **For each** action repeats one or more actions on each array item and works
40
40
41
41
This behavior differs from [Power Automate's **Apply to each** loop](/power-automate/apply-to-each) where iterations run one at a time, or sequentially. However, you can [set up sequential **For each** iterations](#sequential-foreach-loop). For example, if you want to pause the next iteration in a **For each** action by using the [Delay action](../connectors/connectors-native-delay.md), you need to set up each iteration to run sequentially.
42
42
43
-
The exception to the default behavior are nested **For each**actions where iterations always run sequentially, not in parallel. To run operations in parallel for items in a nested loop, create and [call a child logic app workflow](../logic-apps/logic-apps-http-endpoint.md).
43
+
As an exception to the default behavior, a nested **For each**action's iterations always run sequentially, not in parallel. To run operations in parallel for items in a nested loop, create and [call a child logic app workflow](../logic-apps/logic-apps-http-endpoint.md).
44
44
45
45
* To get predictable results from operations on variables during each iteration, run the iterations sequentially. For example, when a concurrently running iteration ends, the **Increment variable**, **Decrement variable**, and **Append to variable** operations return predictable results. However, during each iteration in the concurrently running loop, these operations might return unpredictable results.
46
46
@@ -52,7 +52,7 @@ Follow the steps based on whether you create a Consumption or Standard logic app
52
52
53
53
### [Consumption](#tab/consumption)
54
54
55
-
1. In the [Azure portal](https://portal.azure.com), create an example Consumption logic app workflow with the following steps in the specfied order:
55
+
1. In the [Azure portal](https://portal.azure.com), create an example Consumption logic app workflow with the following steps in the specified order:
56
56
57
57
* The **RSS** trigger named **When a feed item is published**
58
58
@@ -93,7 +93,7 @@ Follow the steps based on whether you create a Consumption or Standard logic app
93
93
94
94
### [Standard](#tab/standard)
95
95
96
-
1. In the [Azure portal](https://portal.azure.com), create an example Standard logic app workflow with the following steps in the specfied order:
96
+
1. In the [Azure portal](https://portal.azure.com), create an example Standard logic app workflow with the following steps in the specified order:
97
97
98
98
* The **RSS** trigger named **When a feed item is published**
99
99
@@ -178,7 +178,7 @@ If you're working in code view, you can define the `For_each` action in your wor
178
178
179
179
## For each: Run sequentially
180
180
181
-
By default, the iterations in a **For each** loop run at the same time in parallel. However, when you have nested loops or variables inside the loops where you expect predictable results, you must run the those loops one at a time or sequentially.
181
+
By default, the iterations in a **For each** loop run at the same time in parallel. However, when you have nested loops or variables inside the loops where you expect predictable results, you must run those loops one at a time or sequentially.
0 commit comments