Remove double thes from documentation

This commit is contained in:
Paweł
2023-04-17 21:45:30 +02:00
parent 5625399680
commit 4431cdd154
10 changed files with 11 additions and 11 deletions

View File

@@ -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]