Standardize all "Prints" comments in documentation

This commit is contained in:
Micky 2024-11-13 14:07:40 +01:00
parent 0f95e9f8e6
commit ca4b29b18d
19 changed files with 104 additions and 97 deletions

View file

@ -70,7 +70,7 @@
<description>
Multiplies each component of the [Color], including the alpha, by the given [float].
[codeblock]
print(1.5 * Color(0.5, 0.5, 0.5)) # Prints "(0.75, 0.75, 0.75, 1.5)"
print(1.5 * Color(0.5, 0.5, 0.5)) # Prints (0.75, 0.75, 0.75, 1.5)
[/codeblock]
</description>
</operator>
@ -87,7 +87,7 @@
<description>
Multiplies each component of the [Vector2] by the given [float].
[codeblock]
print(2.5 * Vector2(1, 3)) # Prints "(2.5, 7.5)"
print(2.5 * Vector2(1, 3)) # Prints (2.5, 7.5)
[/codeblock]
</description>
</operator>