From fb6aaacaedfc5d2c17b25a6a54c08f5837ac141b Mon Sep 17 00:00:00 2001 From: Aaron Franke Date: Sun, 24 Apr 2022 03:21:23 -0500 Subject: Fix type name typo in Debug Adapter Protocol --- doc/classes/Vector3i.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'doc/classes') diff --git a/doc/classes/Vector3i.xml b/doc/classes/Vector3i.xml index a4c91a9299..ebb518792f 100644 --- a/doc/classes/Vector3i.xml +++ b/doc/classes/Vector3i.xml @@ -161,7 +161,7 @@ Gets the remainder of each component of the [Vector3i] with the the given [int]. This operation uses truncated division, which is often not desired as it does not work well with negative numbers. Consider using [method @GlobalScope.posmod] instead if you want to handle negative numbers. [codeblock] - print(Vector2i(10, -20, 30) % 7) # Prints "(3, -6, 2)" + print(Vector3i(10, -20, 30) % 7) # Prints "(3, -6, 2)" [/codeblock] -- cgit v1.2.3