Skip to content

Commit 4656e7a

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

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -324,14 +324,14 @@ These functions are useful inside conditions, they can be used to evaluate any t
324324
| Math function | Task |
325325
| ------------- | ---- |
326326
| [add](control-flow-expression-language-functions.md#add) | Return the result from adding two numbers. |
327-
| [div](control-flow-expression-language-functions.md#div) | Return the result from dividing two numbers. |
327+
| [div](control-flow-expression-language-functions.md#div) | Return the result from dividing one number by another number. |
328328
| [max](control-flow-expression-language-functions.md#max) | Return the highest value from a set of numbers or an array. |
329329
| [min](control-flow-expression-language-functions.md#min) | Return the lowest value from a set of numbers or an array. |
330330
| [mod](control-flow-expression-language-functions.md#mod) | Return the remainder from dividing two numbers. |
331331
| [mul](control-flow-expression-language-functions.md#mul) | Return the product from multiplying two numbers. |
332332
| [rand](control-flow-expression-language-functions.md#rand) | Return a random integer from a specified range. |
333333
| [range](control-flow-expression-language-functions.md#range) | Return an integer array that starts from a specified integer. |
334-
| [sub](control-flow-expression-language-functions.md#sub) | Return the result from subtracting the second number from the first number. |
334+
| [sub](control-flow-expression-language-functions.md#sub) | Return the result from subtracting one number from another number. |
335335

336336
## Function reference
337337

@@ -1398,7 +1398,7 @@ And returns this result: `"https://contoso.com"`
13981398

13991399
### div
14001400

1401-
Return the integer result from dividing two numbers.
1401+
Return the result of dividing one number by another number.
14021402
To get the remainder result, see [mod()](#mod).
14031403

14041404
```
@@ -1413,7 +1413,7 @@ div(<dividend>, <divisor>)
14131413

14141414
| Return value | Type | Description |
14151415
| ------------ | ---- | ----------- |
1416-
| <*quotient-result*> | Integer | The integer result from dividing the first number by the second number |
1416+
| <*quotient-result*> | Integer or Float | The result of dividing the first number by the second number |
14171417
||||
14181418

14191419
*Example*
@@ -2878,7 +2878,7 @@ And returns this result: `"{ \\"name\\": \\"Sophie Owen\\" }"`
28782878

28792879
### sub
28802880

2881-
Return the result from subtracting the second number from the first number.
2881+
Return the result from subtracting one number from another number.
28822882

28832883
```
28842884
sub(<minuend>, <subtrahend>)

0 commit comments

Comments
 (0)