From 870603c59e9f241ab1e0e4b8696ce53600c9e1c5 Mon Sep 17 00:00:00 2001 From: Packet Please Date: Tue, 5 Jul 2022 00:54:08 +0200 Subject: [PATCH] Fix green copypasta --- colors/colors.go | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/colors/colors.go b/colors/colors.go index 539747bf..be7722e9 100644 --- a/colors/colors.go +++ b/colors/colors.go @@ -42,27 +42,27 @@ func Green(s interface{}) string { return colorize(s, green) } -// Red will accept an interface and return a colorized green string. +// Red will accept an interface and return a colorized red string. func Red(s interface{}) string { return colorize(s, red) } -// Cyan will accept an interface and return a colorized green string. +// Cyan will accept an interface and return a colorized cyan string. func Cyan(s interface{}) string { return colorize(s, cyan) } -// Black will accept an interface and return a colorized green string. +// Black will accept an interface and return a colorized black string. func Black(s interface{}) string { return colorize(s, black) } -// Yellow will accept an interface and return a colorized green string. +// Yellow will accept an interface and return a colorized yellow string. func Yellow(s interface{}) string { return colorize(s, yellow) } -// White will accept an interface and return a colorized green string. +// White will accept an interface and return a colorized white string. func White(s interface{}) string { return colorize(s, white) }