From a320d28f53adeba663c207a3ea27fe2b76296891 Mon Sep 17 00:00:00 2001 From: Aaron Franke Date: Sun, 7 Mar 2021 14:34:26 -0500 Subject: [PATCH] [3.2] Fix documentation for Vector2/3.sign() --- doc/classes/Vector2.xml | 2 +- doc/classes/Vector3.xml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/classes/Vector2.xml b/doc/classes/Vector2.xml index 75f580dedc..0d3abb2a98 100644 --- a/doc/classes/Vector2.xml +++ b/doc/classes/Vector2.xml @@ -280,7 +280,7 @@ - Returns the vector with each component set to one or negative one, depending on the signs of the components, or zero if the component is zero, by calling [method @GDScript.sign] on each component. + Returns the vector with each component set to one or negative one, depending on the signs of the components. If a component is zero, it returns positive one. diff --git a/doc/classes/Vector3.xml b/doc/classes/Vector3.xml index b7f27ed0d4..ec0af2f35b 100644 --- a/doc/classes/Vector3.xml +++ b/doc/classes/Vector3.xml @@ -280,7 +280,7 @@ - Returns a vector with each component set to one or negative one, depending on the signs of this vector's components, or zero if the component is zero, by calling [method @GDScript.sign] on each component. + Returns a vector with each component set to one or negative one, depending on the signs of this vector's components. If a component is zero, it returns positive one.