소스 검색

Merge pull request #44353 from skyace65/PowFix

Pow method doc fix
Rémi Verschelde 4 년 전
부모
커밋
a511a26ad8
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      modules/gdscript/doc_classes/@GDScript.xml

+ 1 - 1
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]