mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
Fixed typo in gx.v
Period replaced with a comma.
This commit is contained in:
parent
7f7cbdab75
commit
5a20b6c5d0
2
gx/gx.v
2
gx/gx.v
@ -15,7 +15,7 @@ const (
|
|||||||
// Primary colors
|
// Primary colors
|
||||||
Blue = Color { r: 0, g: 0, b: 255 }
|
Blue = Color { r: 0, g: 0, b: 255 }
|
||||||
Red = Color { r: 255, g: 0, b: 0 }
|
Red = Color { r: 255, g: 0, b: 0 }
|
||||||
Yellow = Color { r: 255. g: 255, b: 0 }
|
Yellow = Color { r: 255, g: 255, b: 0 }
|
||||||
|
|
||||||
// Secondary colors
|
// Secondary colors
|
||||||
Green = Color { r: 0, g: 255, b: 0 }
|
Green = Color { r: 0, g: 255, b: 0 }
|
||||||
|
Loading…
Reference in New Issue
Block a user