diff options
author | Aaron Franke <arnfranke@yahoo.com> | 2022-04-24 03:21:23 -0500 |
---|---|---|
committer | Aaron Franke <arnfranke@yahoo.com> | 2022-04-24 03:21:23 -0500 |
commit | fb6aaacaedfc5d2c17b25a6a54c08f5837ac141b (patch) | |
tree | 4c850970c8d351f2bb497ec60d133e1b679e4d20 /doc/classes/Vector3i.xml | |
parent | 01f184178b6cbb5ba6199898f6296fb03aa37d0e (diff) |
Fix type name typo in Debug Adapter Protocol
Diffstat (limited to 'doc/classes/Vector3i.xml')
-rw-r--r-- | doc/classes/Vector3i.xml | 2 |
1 files changed, 1 insertions, 1 deletions
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 @@ <description> 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] </description> </operator> |