diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2020-07-30 16:24:33 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2020-07-30 16:24:37 +0200 |
commit | 9833f9cc11b82e560b81b605c2ff4ba0a1247624 (patch) | |
tree | 9fa376bb52f32d5e1c5e1c14683baab5d6287449 /modules/gdscript/doc_classes | |
parent | b64bdf2c3e01f163d5295461007ecd14686f3fcb (diff) |
doc: Fix typo in BBcode tag
Diffstat (limited to 'modules/gdscript/doc_classes')
-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 c86b974f47..1ac47884c0 100644 --- a/modules/gdscript/doc_classes/@GDScript.xml +++ b/modules/gdscript/doc_classes/@GDScript.xml @@ -112,7 +112,7 @@ </argument> <description> Returns the arc tangent of [code]s[/code] in radians. Use it to get the angle from an angle's tangent in trigonometry: [code]atan(tan(angle)) == angle[/code]. - The method cannot know in which quadrant the angle should fall. See [method atan2] if you have both [code]y[code] and [code]x[/code]. + The method cannot know in which quadrant the angle should fall. See [method atan2] if you have both [code]y[/code] and [code]x[/code]. [codeblock] a = atan(0.5) # a is 0.463648 [/codeblock] |