Skip to content

Commit eb75f90

Browse files
committed
Formatting edits
1 parent 7c0093b commit eb75f90

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

articles/logic-apps/workflow-definition-language-functions-reference.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -181,31 +181,31 @@ To change a value's type or format, you can use these conversion functions. For
181181

182182
The Logic Apps service automatically or implicitly converts values between specific data types, which means that you don't need to manually or explicitly convert between those types by using the relevant expressions. Actually, if you use these expressions in the designer or code view, Logic Apps removes the expressions after you save your logic app because the conversions happen automatically.
183183

184-
This table describes the data type conversions that Logic Apps automatically makes and the expressions that you'd typically use when manually performing these conversions but should omit:
184+
This table describes the data type conversions that Logic Apps automatically makes and the expressions that you'd typically use when manually performing these conversions but should omit.
185185

186186
| From | To |
187187
|------|----|
188188
| **Binary** | - **Binary** or **File**: `base64ToBinary(<value>)` <br>- **DataUri**: `concat('data:;base64,',<value>)` <br>- **Other**: `base64ToString(<value>)` |
189189
| **Byte** | - **Binary** or **File**: `base64ToBinary(<value>)` <br>- **DataUri**: `concat('data:;base64,',<value>)` <br>- **Other**: `base64ToString(<value>)` |
190190
| **DataUri** | - **Binary** or **File**: `decodeDataUri(<value>)` <br>- **Byte**: `base64(decodeDataUri(<value>))` <br>- **Other**: `decodeDataUri(<value>)` |
191-
| **Other** | - **Byte**: `base64(<value>)` <br>- **DataUri**: `concat('data:,', encodeUriComponent(<value>))` |
191+
| **Other** | - **Byte**: `base64(<value>)` <br>- **DataUri**: `concat('data:,',encodeUriComponent(<value>))` |
192192
|||
193193

194-
If you use non-string values where strings are expected as inputs, Logic Apps implicitly converts the non-string values into strings, for example:
194+
If you use non-string values where strings are expected as inputs, Logic Apps automatically converts the non-string values into strings, for example:
195195

196196
* A trigger returns a numerical value as output through this expression:
197197

198198
`triggerBody()?['number']`
199199

200-
If the numerical value is used for a string input, such as an HTTP URL, you get this expression:
200+
If the numerical value is used for a string input, such as an HTTP URL, you get this result:
201201

202202
`@{triggerBody()?['number']}`
203203

204204
* A trigger returns a string value as output through this expression:
205205

206206
`triggerBody()?['string']`
207207

208-
If the string value is used for a string input, you get this expression:
208+
If the string value is used for a string input, you get this result:
209209

210210
`@triggerBody()?['string']`
211211

0 commit comments

Comments
 (0)