summaryrefslogtreecommitdiffstats
path: root/doc/classes/Color.xml
diff options
context:
space:
mode:
authorMichael Alexsander <michaelalexsander@protonmail.com>2020-01-23 14:41:49 -0300
committerMichael Alexsander <michaelalexsander@protonmail.com>2020-01-23 14:41:49 -0300
commitc4745c96d78aa6d1dcce642bb0b49d72be5f4e72 (patch)
treec446dfe2547292843533c57a42daa19f34b8e5ff /doc/classes/Color.xml
parent1c0995d4509acd0a750f32517b14c01842220cca (diff)
downloadredot-engine-c4745c96d78aa6d1dcce642bb0b49d72be5f4e72.tar.gz
Remove unnecessary extra spaces before comments in code examples.
Diffstat (limited to 'doc/classes/Color.xml')
-rw-r--r--doc/classes/Color.xml10
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/classes/Color.xml b/doc/classes/Color.xml
index 1d4225542a..8820cb5c27 100644
--- a/doc/classes/Color.xml
+++ b/doc/classes/Color.xml
@@ -18,11 +18,11 @@
<description>
Constructs a color from an HTML hexadecimal color string in ARGB or RGB format. See also [method @GDScript.ColorN].
[codeblock]
- # Each of the following creates the same color RGBA(178, 217, 10, 255)
- var c1 = Color("#ffb2d90a") # ARGB format with "#"
- var c2 = Color("ffb2d90a") # ARGB format
- var c3 = Color("#b2d90a") # RGB format with "#"
- var c4 = Color("b2d90a") # RGB format
+ # Each of the following creates the same color RGBA(178, 217, 10, 255).
+ var c1 = Color("#ffb2d90a") # ARGB format with "#".
+ var c2 = Color("ffb2d90a") # ARGB format.
+ var c3 = Color("#b2d90a") # RGB format with "#".
+ var c4 = Color("b2d90a") # RGB format.
[/codeblock]
</description>
</method>