@@ -324,14 +324,14 @@ These functions are useful inside conditions, they can be used to evaluate any t
324
324
| Math function | Task |
325
325
| ------------- | ---- |
326
326
| [ 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 . |
328
328
| [ max] ( control-flow-expression-language-functions.md#max ) | Return the highest value from a set of numbers or an array. |
329
329
| [ min] ( control-flow-expression-language-functions.md#min ) | Return the lowest value from a set of numbers or an array. |
330
330
| [ mod] ( control-flow-expression-language-functions.md#mod ) | Return the remainder from dividing two numbers. |
331
331
| [ mul] ( control-flow-expression-language-functions.md#mul ) | Return the product from multiplying two numbers. |
332
332
| [ rand] ( control-flow-expression-language-functions.md#rand ) | Return a random integer from a specified range. |
333
333
| [ 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. |
335
335
336
336
## Function reference
337
337
@@ -1398,7 +1398,7 @@ And returns this result: `"https://contoso.com"`
1398
1398
1399
1399
### div
1400
1400
1401
- Return the integer result from dividing two numbers .
1401
+ Return the result of dividing one number by another number .
1402
1402
To get the remainder result, see [ mod()] ( #mod ) .
1403
1403
1404
1404
```
@@ -1413,7 +1413,7 @@ div(<dividend>, <divisor>)
1413
1413
1414
1414
| Return value | Type | Description |
1415
1415
| ------------ | ---- | ----------- |
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 |
1417
1417
||||
1418
1418
1419
1419
* Example*
@@ -2878,7 +2878,7 @@ And returns this result: `"{ \\"name\\": \\"Sophie Owen\\" }"`
2878
2878
2879
2879
### sub
2880
2880
2881
- Return the result from subtracting the second number from the first number.
2881
+ Return the result from subtracting one number from another number.
2882
2882
2883
2883
```
2884
2884
sub(<minuend>, <subtrahend>)
0 commit comments