From 81bbde5b9fa2650b5d4151b2ef45852d5b6c955c Mon Sep 17 00:00:00 2001
From: GTcreyon <67928545+GTcreyon@users.noreply.github.com>
Date: Sat, 23 Apr 2022 12:15:14 +0100
Subject: [PATCH] Changed "pair" to "triplet" in Vector3 definition
(cherry picked from commit ce1fcfcff9d5056127deb8da70f8823be1654e1f)
---
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 d818134ef67..e59ed9e8f8d 100644
--- a/doc/classes/Vector3.xml
+++ b/doc/classes/Vector3.xml
@@ -4,7 +4,7 @@
Vector used for 3D math.
- 3-element structure that can be used to represent positions in 3D space or any other pair of numeric values.
+ 3-element structure that can be used to represent positions in 3D space or any other triplet of numeric values.
[b]Note:[/b] In a boolean context, a Vector3 will evaluate to [code]false[/code] if it's equal to [code]Vector3(0, 0, 0)[/code]. Otherwise, a Vector3 will always evaluate to [code]true[/code].