From 95e7b35f74210bc5dd2fb49f6d79a66881687f55 Mon Sep 17 00:00:00 2001 From: Mike Farah Date: Sat, 16 Nov 2024 11:54:58 +1100 Subject: [PATCH] Fixed spelling of coloured --- cmd/constant.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/constant.go b/cmd/constant.go index 3de2de18..eb6e9aeb 100644 --- a/cmd/constant.go +++ b/cmd/constant.go @@ -27,7 +27,7 @@ var forceNoColor = false var colorsEnabled = false func init() { - // when NO_COLOR environment variable presents and not an empty string the colored output should be disabled; + // when NO_COLOR environment variable presents and not an empty string the coloured output should be disabled; // refer to no-color.org forceNoColor = os.Getenv("NO_COLOR") != "" }