From 5a20b6c5d0c21f9a5258683e42f764e1af29963e Mon Sep 17 00:00:00 2001 From: ultraviolets <52173085+ultraviolets@users.noreply.github.com> Date: Mon, 24 Jun 2019 21:59:56 +0100 Subject: [PATCH] Fixed typo in gx.v Period replaced with a comma. --- gx/gx.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gx/gx.v b/gx/gx.v index fbceaebd5b..de3992bf54 100644 --- a/gx/gx.v +++ b/gx/gx.v @@ -15,7 +15,7 @@ const ( // Primary colors Blue = Color { r: 0, g: 0, b: 255 } 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 Green = Color { r: 0, g: 255, b: 0 }