diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2018-12-27 11:10:09 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2018-12-27 11:10:18 +0100 |
commit | 2e39e38c10768afa2d6e22a5ddec628e0b5fe147 (patch) | |
tree | 898b664caeebc79da7fb71fc77b0cfaff4d713af /modules | |
parent | be4b7da5187219efa2b41a94712e86d110df4fb2 (diff) |
doc: Sync classref with current source
Fix various code formatting issues and argument names.
Diffstat (limited to 'modules')
-rw-r--r-- | modules/visual_script/doc_classes/VisualScriptBuiltinFunc.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/visual_script/doc_classes/VisualScriptBuiltinFunc.xml b/modules/visual_script/doc_classes/VisualScriptBuiltinFunc.xml index 399ba8ef5d..ac3aec6c14 100644 --- a/modules/visual_script/doc_classes/VisualScriptBuiltinFunc.xml +++ b/modules/visual_script/doc_classes/VisualScriptBuiltinFunc.xml @@ -154,7 +154,7 @@ Return the lesser of the two numbers, also known as their minimum. </constant> <constant name="LOGIC_CLAMP" value="46" enum="BuiltinFunc"> - Return the input clamped inside the given range, ensuring the result is never outside it. Equivalent to `min(max(input, range_low), range_high)` + Return the input clamped inside the given range, ensuring the result is never outside it. Equivalent to [code]min(max(input, range_low), range_high)[/code]. </constant> <constant name="LOGIC_NEAREST_PO2" value="47" enum="BuiltinFunc"> Return the nearest power of 2 to the input. |