Skip to content

Commit ea9db28

Browse files
authored
Merge pull request #57927 from MicrosoftDocs/SyntaxC4-MarkDig-Links5
Code linting issues fixes
2 parents 64eb833 + 878b790 commit ea9db28

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

articles/logic-apps/logic-apps-exception-handling.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ specify a retry policy, the action uses the default policy.
8484

8585
| Value | Type | Description |
8686
|-------|------|-------------|
87-
| <*retry-policy-type*> | String | The retry policy type you want to use: "default", "none", "fixed", or "exponential" |
87+
| <*retry-policy-type*> | String | The retry policy type you want to use: `default`, `none`, `fixed`, or `exponential` |
8888
| <*retry-interval*> | String | The retry interval where the value must use [ISO 8601 format](https://en.wikipedia.org/wiki/ISO_8601#Combined_date_and_time_representations). The default minimum interval is `PT5S` and the maximum interval is `PT1D`. When you use the exponential interval policy, you can specify different minimum and maximum values. |
8989
| <*retry-attempts*> | Integer | The number of retry attempts, which must be between 1 and 90 |
9090
||||
@@ -277,9 +277,9 @@ For limits on scopes, see [Limits and config](../logic-apps/logic-apps-limits-an
277277
Although catching failures from a scope is useful,
278278
you might also want context to help you understand
279279
exactly which actions failed plus any errors or status codes that were returned.
280-
The "@result()" expression provides context about the result of all actions in a scope.
280+
The `@result()` expression provides context about the result of all actions in a scope.
281281

282-
The "@result()" expression accepts a single parameter (the scope's name)
282+
The `@result()` expression accepts a single parameter (the scope's name)
283283
and returns an array of all the action results from within that scope.
284284
These action objects include the same attributes as the **@actions()** object,
285285
such as the action's start time, end time, status, inputs, correlation IDs, and outputs.
@@ -338,9 +338,9 @@ for any actions that failed within the scope "My_Scope":
338338
Here's a detailed walkthrough that describes what happens in this example:
339339

340340
1. To get the result from all actions inside "My_Scope",
341-
the **Filter Array** action uses this filter expression: "@result('My_Scope')"
341+
the **Filter Array** action uses this filter expression: `@result('My_Scope')`
342342

343-
2. The condition for **Filter Array** is any "@result()"
343+
2. The condition for **Filter Array** is any `@result()`
344344
item that has a status equal to **Failed**.
345345
This condition filters the array that has all the action
346346
results from "My_Scope" down to an array with only the failed action results.
@@ -354,18 +354,18 @@ action result that was previously filtered.
354354
Multiple failed actions cause one action per failure.
355355

356356
4. Send an HTTP POST on the **For each** item response body,
357-
which is the "@item()['outputs']['body']" expression.
357+
which is the `@item()['outputs']['body']` expression.
358358

359-
The "@result()" item shape is the same as the
360-
"@actions()" shape and can be parsed the same way.
359+
The `@result()` item shape is the same as the
360+
`@actions()` shape and can be parsed the same way.
361361

362-
5. Include two custom headers with the failed action name ("@item()['name']")
363-
and the failed run client tracking ID ("@item()['clientTrackingId']").
362+
5. Include two custom headers with the failed action name (`@item()['name']`)
363+
and the failed run client tracking ID (`@item()['clientTrackingId']`).
364364

365-
For reference, here's an example of a single "@result()" item,
365+
For reference, here's an example of a single `@result()` item,
366366
showing the **name**, **body**, and **clientTrackingId**
367367
properties that are parsed in the previous example.
368-
Outside a **For each** action, "@result()" returns an array of these objects.
368+
Outside a **For each** action, `@result()` returns an array of these objects.
369369

370370
```json
371371
{
@@ -425,4 +425,4 @@ information to other data sources, such as queues, topics, SQL, Azure Cosmos DB,
425425
* [Find more Logic Apps examples and scenarios](../logic-apps/logic-apps-examples-and-scenarios.md)
426426

427427
<!-- References -->
428-
[retryPolicyMSDN]: https://docs.microsoft.com/rest/api/logic/actions-and-triggers#Anchor_9
428+
[retryPolicyMSDN]: https://docs.microsoft.com/rest/api/logic/actions-and-triggers#Anchor_9

0 commit comments

Comments
 (0)