Browse Source

Docs: Clarify vector equal() methods. (#22446)

Michael Herzog 3 years ago
parent
commit
e739917efd
3 changed files with 3 additions and 3 deletions
  1. 1 1
      docs/api/en/math/Vector2.html
  2. 1 1
      docs/api/en/math/Vector3.html
  3. 1 1
      docs/api/en/math/Vector4.html

+ 1 - 1
docs/api/en/math/Vector2.html

@@ -176,7 +176,7 @@
 		</p>
 
 		<h3>[method:Boolean equals]( [param:Vector2 v] )</h3>
-		<p>Checks for strict equality of this vector and [page:Vector2 v].</p>
+		<p>Returns *true* if the components of this vector and [page:Vector2 v] are strictly equal; *false* otherwise.</p>
 
 		<h3>[method:this floor]()</h3>
 		<p>The components of this vector are rounded down to the nearest integer value.</p>

+ 1 - 1
docs/api/en/math/Vector3.html

@@ -202,7 +202,7 @@
 		</p>
 
 		<h3>[method:Boolean equals]( [param:Vector3 v] )</h3>
-		<p>Checks for strict equality of this vector and [page:Vector3 v].</p>
+		<p>Returns *true* if the components of this vector and [page:Vector3 v] are strictly equal; *false* otherwise.</p>
 
 		<h3>[method:this floor]()</h3>
 		<p>The components of this vector are rounded down to the nearest integer value.</p>

+ 1 - 1
docs/api/en/math/Vector4.html

@@ -152,7 +152,7 @@
 		</p>
 
 		<h3>[method:Boolean equals]( [param:Vector4 v] )</h3>
-		<p>Checks for strict equality of this vector and [page:Vector4 v].</p>
+		<p>Returns *true* if the components of this vector and [page:Vector4 v] are strictly equal; *false* otherwise.</p>
 
 		<h3>[method:this floor]()</h3>
 		<p>The components of this vector are rounded down to the nearest integer value.</p>