summaryrefslogtreecommitdiffstats
path: root/doc/classes/int.xml
diff options
context:
space:
mode:
authorDanil Alexeev <danil@alexeev.xyz>2020-11-29 17:08:45 +0300
committerDanil Alexeev <danil@alexeev.xyz>2020-12-01 16:05:10 +0300
commitbf96056ad07365638ddbb96e4eac52c16b38b4c3 (patch)
tree8f1cfbee2d3e4a66827f5f2ec5f668c780b73dca /doc/classes/int.xml
parentd1943f6a77c9a1832795c6e095d61d8d5b63a371 (diff)
downloadredot-engine-bf96056ad07365638ddbb96e4eac52c16b38b4c3.tar.gz
Several edits to the GDScript docs
Diffstat (limited to 'doc/classes/int.xml')
-rw-r--r--doc/classes/int.xml2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/classes/int.xml b/doc/classes/int.xml
index b0d0a4bd7b..a63c509937 100644
--- a/doc/classes/int.xml
+++ b/doc/classes/int.xml
@@ -70,7 +70,7 @@
<argument index="0" name="from" type="float">
</argument>
<description>
- Cast a float value to an integer value, this method simply removes the number fractions, so for example [code]int(2.7)[/code] will be equals to 2, [code]int(.1)[/code] will be equals to 0 and [code]int(-2.7)[/code] will be equals to -2.
+ Cast a float value to an integer value, this method simply removes the number fractions (i.e. rounds [code]from[/code] towards zero), so for example [code]int(2.7)[/code] will be equals to 2, [code]int(0.1)[/code] will be equals to 0 and [code]int(-2.7)[/code] will be equals to -2. This operation is also called truncation.
</description>
</method>
<method name="operator !=" qualifiers="operator">