Skip to content

Commit 22a9497

Browse files
authored
Refine wording in Option 2 for better readability
1 parent ce67e84 commit 22a9497

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

articles/logic-apps/expression-functions-reference.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4993,15 +4993,15 @@ xml(
49934993
)
49944994
```
49954995

4996-
Option 2: Store the JSON array in a **Compose** action named **Compose1**. Then use the `outputs()` function to return a JSON object from **Compose1**.
4996+
Option 2: Store the JSON array in a **Compose** action named **Compose1**. Then use the `outputs()` function to return a JSON object from **Compose1**, and store the returned JSON object in another **Compose** action named **Compose2**.
49974997

49984998
```
49994999
{
50005000
"root": { "array": @{outputs('Compose1')} }
50015001
}
50025002
```
50035003

5004-
Store the returned JSON object in another action named **Compose2**. You can then use the `xml()` and `outputs()` functions to create XML from the JSON object output from **Compose2**, for example:
5004+
You can then use the `xml()` and `outputs()` functions to create XML from the JSON object output from **Compose2**, for example:
50055005

50065006
```
50075007
xml(outputs('Compose2'))

0 commit comments

Comments
 (0)