diff options
author | Max Hilbrunner <mhilbrunner@users.noreply.github.com> | 2018-09-29 19:16:45 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-29 19:16:45 +0200 |
commit | f1c2c3038cc3fa57b266262615cb463760ac15ab (patch) | |
tree | 3cf05eb5f795b35712880a1cfce870b80c8fc2e8 | |
parent | 0de8309b2c38306a2c05f8f239fa423bc1b7899b (diff) | |
parent | da296ce30f16eb9fd4835cbd3911856d852eb5b2 (diff) |
Merge pull request #22527 from FlamyAT/patch-1
Fixed casting result in float.xml
-rw-r--r-- | doc/classes/float.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/classes/float.xml b/doc/classes/float.xml index ef3c3d72eb..0c5536b5fe 100644 --- a/doc/classes/float.xml +++ b/doc/classes/float.xml @@ -35,7 +35,7 @@ <argument index="0" name="from" type="String"> </argument> <description> - Cast a [String] value to a floating point value. This method accepts float value strings like [code] '1.23' [/code] and exponential notation strings for its parameter so calling [code] float('1e3') [/code] will return 1000.0 and calling [code] float('1e-3') [/code] will return -0.001. + Cast a [String] value to a floating point value. This method accepts float value strings like [code] '1.23' [/code] and exponential notation strings for its parameter so calling [code] float('1e3') [/code] will return 1000.0 and calling [code] float('1e-3') [/code] will return 0.001. </description> </method> </methods> |