diff options
author | Poommetee Ketson <poommetee@protonmail.com> | 2018-04-16 00:17:37 +0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-16 00:17:37 +0700 |
commit | 7b5703bc41460c5c8b955f879190625da85a2a81 (patch) | |
tree | a43bb27430cab178e8e18a0023849f628f324b05 /doc/classes | |
parent | e44444ea2dfdcc8125caa6708c8d0ca7036d3527 (diff) | |
parent | b6b8c7b21564672ad5e2e96eb95b857c73404b44 (diff) |
Merge pull request #18210 from willvincent/feature/exp_doc_fix
Fix/Remove potentially confusing references to Euler
[ci skip]
Diffstat (limited to 'doc/classes')
-rw-r--r-- | doc/classes/@GDScript.xml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/classes/@GDScript.xml b/doc/classes/@GDScript.xml index 07e428faad..acece05510 100644 --- a/doc/classes/@GDScript.xml +++ b/doc/classes/@GDScript.xml @@ -326,7 +326,8 @@ <argument index="0" name="s" type="float"> </argument> <description> - Raises the Euler's constant [b]e[/b] to the power of [code]s[/code] and returns it. [b]e[/b] has an approximate value of 2.71828. + The natural exponential function. It raises the mathematical constant [b]e[/b] to the power of [code]s[/code] and returns it. + [b]e[/b] has an approximate value of 2.71828. [codeblock] a = exp(2) # approximately 7.39 [/codeblock] |