From f48a939e285fb26978aac561bdc7ab5282bafcbb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Verschelde?= Date: Wed, 1 May 2024 12:22:02 +0200 Subject: [PATCH] doc: Fix cherry-pick mistake for Vector3.cross description (cherry picked from commit e66b52989d61d76b4509efc0d442960d56cd7d49) --- doc/classes/Vector3.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/classes/Vector3.xml b/doc/classes/Vector3.xml index 4433e16f410..622f715ac48 100644 --- a/doc/classes/Vector3.xml +++ b/doc/classes/Vector3.xml @@ -56,7 +56,7 @@ Returns the cross product of this vector and [code]b[/code]. - This returns a vector perpendicular to both this and [param with], which would be the normal vector of the plane defined by the two vectors. As there are two such vectors, in opposite directions, this method returns the vector defined by a right-handed coordinate system. If the two vectors are parallel this returns an empty vector, making it useful for testing if two vectors are parallel. + This returns a vector perpendicular to both this and [code]b[/code], which would be the normal vector of the plane defined by the two vectors. As there are two such vectors, in opposite directions, this method returns the vector defined by a right-handed coordinate system. If the two vectors are parallel this returns an empty vector, making it useful for testing if two vectors are parallel.