diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2022-04-25 16:51:09 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-25 16:51:09 +0200 |
commit | df4de306a9c20cf4d4e87c89b448ac71f7a31444 (patch) | |
tree | ebc25ce870c8324c9876f8d5ba011066bdde55f8 /doc/classes/Vector3i.xml | |
parent | e246d08c525df7b64eff3b0501c49a0f2e5edb97 (diff) | |
parent | fb6aaacaedfc5d2c17b25a6a54c08f5837ac141b (diff) |
Merge pull request #60490 from aaronfranke/dap-typo
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> |