Merge pull request #27461 from avencherus/atan2-doc

Corrects small typo in atan2() documentation.
This commit is contained in:
Rémi Verschelde 2019-03-27 17:26:53 +01:00 committed by GitHub
commit 174b19f768
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -127,7 +127,7 @@
<description>
Returns the arc tangent of [code]y/x[/code] in radians. Use to get the angle of tangent [code]y/x[/code]. To compute the value, the method takes into account the sign of both arguments in order to determine the quadrant.
[codeblock]
a = atan(0, -1) # a is 3.141593
a = atan2(0, -1) # a is 3.141593
[/codeblock]
</description>
</method>