summaryrefslogtreecommitdiff
path: root/doc/classes/Vector2i.xml
diff options
context:
space:
mode:
authorPaweł <pkowal1982@gmail.com>2023-04-17 21:45:30 +0200
committerYuri Sizov <yuris@humnom.net>2023-04-24 17:08:56 +0200
commit32dc3b66ab6453d2ab1863b40d03aa8a776d27d8 (patch)
tree5e2e43104927de13fcb23dae0696ea4939ef3b94 /doc/classes/Vector2i.xml
parent75f3ce618ec70e955829c17c131ed815f97ff7cd (diff)
Remove double thes from documentation
(cherry picked from commit 4431cdd154b8fa0494148980646903e824c0bdb1)
Diffstat (limited to 'doc/classes/Vector2i.xml')
-rw-r--r--doc/classes/Vector2i.xml2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/classes/Vector2i.xml b/doc/classes/Vector2i.xml
index 8c429e86f1..e08a203d90 100644
--- a/doc/classes/Vector2i.xml
+++ b/doc/classes/Vector2i.xml
@@ -159,7 +159,7 @@
<return type="Vector2i" />
<param index="0" name="right" type="int" />
<description>
- Gets the remainder of each component of the [Vector2i] 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.
+ Gets the remainder of each component of the [Vector2i] with 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) % 7) # Prints "(3, -6)"
[/codeblock]