Skip to content

Commit 6cb2612

Browse files
committed
Merge pull request #1013 from tomass/master
Fix function example explanation
2 parents f624792 + 688952d commit 6cb2612

File tree

1 file changed

+1
-1
lines changed
  • resources/function_help

1 file changed

+1
-1
lines changed

resources/function_help/clamp

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ Restricts an input value to a specified range.
1414
<!-- Show example of function.-->
1515
clamp(1,5,10) &rarr; 5 (<i>input</i> is between 1 and 10 so is returned unchanged)<br>
1616
clamp(1,0,10) &rarr; 1 (<i>input</i> is less than minimum value of 1, so function returns 1)<br>
17-
clamp(1,11,10) &rarr; 10 (<i>input</i> is greater than maximum value of 10, so function returns 11)<br>
17+
clamp(1,11,10) &rarr; 10 (<i>input</i> is greater than maximum value of 10, so function returns 10)<br>
1818

1919

0 commit comments

Comments
 (0)