1
0
mirror of https://github.com/godotengine/godot.git synced 2025-12-04 17:04:49 +00:00

Pow method doc fix

(cherry picked from commit 4fd20015f3)
This commit is contained in:
skyace65
2020-12-13 17:53:30 -05:00
committed by Rémi Verschelde
parent 53988c7de3
commit e072b3db82

View File

@@ -780,7 +780,7 @@
<argument index="1" name="exp" type="float"> <argument index="1" name="exp" type="float">
</argument> </argument>
<description> <description>
Returns the result of [code]x[/code] raised to the power of [code]y[/code]. Returns the result of [code]base[/code] raised to the power of [code]exp[/code].
[codeblock] [codeblock]
pow(2, 5) # Returns 32.0 pow(2, 5) # Returns 32.0
[/codeblock] [/codeblock]