aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTrey Bastian <Trey@Treys-MBP.lan>2016-01-03 01:54:31 +0000
committerTrey Bastian <Trey@Treys-MBP.lan>2016-01-03 01:54:31 +0000
commit51ff8e27ec8f34409074597ed1640fc7a5419751 (patch)
tree70159448efafbb55f55c503cad302a00cd10762a
parent7da149d9aff97637a48d212794f21636d5159c16 (diff)
update spacing for golint again / testing vscode implementation of golint
-rw-r--r--colourize.go10
1 files changed, 5 insertions, 5 deletions
diff --git a/colourize.go b/colourize.go
index fd25bbf..bec9969 100644
--- a/colourize.go
+++ b/colourize.go
@@ -1,4 +1,4 @@
-// Package colourize implements simple ANSI colour codes to style terminal output text.
+//Package colourize implements simple ANSI colour codes to style terminal output text.
package colourize
import (
@@ -7,9 +7,9 @@ import (
"strconv"
)
-// Colour Styles
+//Colour Styles
const (
- // Text Colour
+ //Text Colour
Black = 30
Red = 31
Green = 32
@@ -20,7 +20,7 @@ const (
White = 37
Grey = 90
- // Background Colour
+ //Background Colour
Blackbg = 40
Redbg = 41
Greenbg = 42
@@ -30,7 +30,7 @@ const (
Cyanbg = 46
Whitebg = 47
- // Style
+ //Style
Bold = 1
Dim = 2
Italic = 3