Fix incorrect documentation for Vector2.angle()

(cherry picked from commit 299c3ec1c1)
This commit is contained in:
Aaron Franke 2020-07-02 22:52:37 -04:00 committed by Rémi Verschelde
parent 0924a3ac55
commit 3fd7c33f39

View file

@ -34,7 +34,7 @@
</return>
<description>
Returns the vector's angle in radians with respect to the X axis, or [code](1, 0)[/code] vector.
Equivalent to the result of [method @GDScript.atan2] when called with the vector's [member x] and [member y] as parameters: [code]atan2(x, y)[/code].
Equivalent to the result of [method @GDScript.atan2] when called with the vector's [member y] and [member x] as parameters: [code]atan2(y, x)[/code].
</description>
</method>
<method name="angle_to">