diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2020-12-14 07:38:08 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-14 07:38:08 +0100 |
commit | a511a26ad82bf70ed00ab34a3201ec5c6049387f (patch) | |
tree | f1681d1180521b083daae65659eaab541ed3fb4b | |
parent | fe49eaa54479ac1e568bd204cabc854930936a07 (diff) | |
parent | 4fd20015f35135e6a4e8e67fc8e9e1921196bef6 (diff) |
Merge pull request #44353 from skyace65/PowFix
Pow method doc fix
-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] |