From 51ff8e27ec8f34409074597ed1640fc7a5419751 Mon Sep 17 00:00:00 2001 From: Trey Bastian Date: Sun, 3 Jan 2016 01:54:31 +0000 Subject: update spacing for golint again / testing vscode implementation of golint --- colourize.go | 10 +++++----- 1 file 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 -- cgit v1.2.3