diff options
| -rw-r--r-- | modules/gdscript/doc_classes/@GDScript.xml | 5 | 
1 files changed, 3 insertions, 2 deletions
diff --git a/modules/gdscript/doc_classes/@GDScript.xml b/modules/gdscript/doc_classes/@GDScript.xml index 949663c5ea..2a8453116e 100644 --- a/modules/gdscript/doc_classes/@GDScript.xml +++ b/modules/gdscript/doc_classes/@GDScript.xml @@ -336,11 +336,12 @@  			<description>  				Rounds [code]s[/code] to the closest smaller integer and returns it.  				[codeblock] -				# a is 2 +				# a is 2.0  				a = floor(2.99) -				# a is -3 +				# a is -3.0  				a = floor(-2.99)  				[/codeblock] +				[b]Note:[/b] This method returns a float. If you need an integer, you can use [code]int(s)[/code] directly.  			</description>  		</method>  		<method name="fmod">  |