Skip to content

Commit 4d7f95b

Browse files
Update control-flow-expression-language-functions.md
1 parent 6461714 commit 4d7f95b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1409,7 +1409,7 @@ The precise return type of the function depends on the types of its parameters &
14091409
| Parameter | Required | Type | Description |
14101410
| --------- | -------- | ---- | ----------- |
14111411
| <*dividend*> | Yes | Integer or Float | The number to divide by the *divisor* |
1412-
| <*divisor*> | Yes | Integer or Float | The number that divides the *dividend*, but cannot be 0 |
1412+
| <*divisor*> | Yes | Integer or Float | The number that divides the *dividend*. A *divisor* value of zero causes an error at runtime. |
14131413
|||||
14141414

14151415
| Return value | Type | Description |
@@ -1431,13 +1431,13 @@ And all return this result: `4.5`
14311431

14321432
*Example 2*
14331433

1434-
This example also divides the number 9 by 2, but integer division (discarding the remainder) is performed because both parameters are integers.
1434+
This example also divides the number 9 by 2, but because both parameters are integers the remainder is discarded (integer division):
14351435

14361436
```
14371437
div(9, 2)
14381438
```
14391439

1440-
The expression returns the result `4`. To obtain the remainder result, see [mod()](#mod).
1440+
The expression returns the result `4`. To obtain the value of the remainder, use the [mod()](#mod) function.
14411441

14421442
<a name="encodeUriComponent"></a>
14431443

0 commit comments

Comments
 (0)