diff options
author | skyace65 <trekie96@hotmail.com> | 2020-12-13 17:53:30 -0500 |
---|---|---|
committer | skyace65 <trekie96@hotmail.com> | 2020-12-13 17:53:30 -0500 |
commit | 4fd20015f35135e6a4e8e67fc8e9e1921196bef6 (patch) | |
tree | c87763e088be0120480a3224597d21af9505b33c /modules | |
parent | 06314c1b0e8100546a53cf2786fa244c5d19af6f (diff) |
Pow method doc fix
Diffstat (limited to 'modules')
-rw-r--r-- | modules/gdscript/doc_classes/@GDScript.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gdscript/doc_classes/@GDScript.xml b/modules/gdscript/doc_classes/@GDScript.xml index eeb66ebfc0..4ed129b3ff 100644 --- a/modules/gdscript/doc_classes/@GDScript.xml +++ b/modules/gdscript/doc_classes/@GDScript.xml @@ -763,7 +763,7 @@ <argument index="1" name="exp" type="float"> </argument> <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] pow(2, 5) # Returns 32.0 [/codeblock] |