Skip to content

Commit 79ad110

Browse files
Update control-flow-expression-language-functions.md
1 parent 4656e7a commit 79ad110

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

articles/data-factory/control-flow-expression-language-functions.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1398,8 +1398,7 @@ And returns this result: `"https://contoso.com"`
13981398

13991399
### div
14001400

1401-
Return the result of dividing one number by another number.
1402-
To get the remainder result, see [mod()](#mod).
1401+
Return the result of dividing one number by another number. The precise return type of the function depends on the types of its parameters — see examples for detail.
14031402

14041403
```
14051404
div(<dividend>, <divisor>)
@@ -1416,7 +1415,7 @@ div(<dividend>, <divisor>)
14161415
| <*quotient-result*> | Integer or Float | The result of dividing the first number by the second number |
14171416
||||
14181417

1419-
*Example*
1418+
*Example 1*
14201419

14211420
Both examples divide the first number by the second number:
14221421

@@ -1427,6 +1426,11 @@ div(11, 5)
14271426

14281427
And return this result: `2`
14291428

1429+
*Example 2*
1430+
1431+
To get the remainder result, see [mod()](#mod).
1432+
1433+
14301434
<a name="encodeUriComponent"></a>
14311435

14321436
### encodeUriComponent

0 commit comments

Comments
 (0)