From 67fdcf127cc5ddd29bf483cb6a9fcf04a9c06a38 Mon Sep 17 00:00:00 2001 From: Tongyao Si Date: Sat, 18 Feb 2023 23:53:58 +0800 Subject: [PATCH] Update pkg/addons/addons.go Co-authored-by: Steven Powell <44844360+spowelljr@users.noreply.github.com> --- pkg/addons/addons.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/addons/addons.go b/pkg/addons/addons.go index bfc9efd80fb6..1d182de09c4a 100644 --- a/pkg/addons/addons.go +++ b/pkg/addons/addons.go @@ -625,7 +625,7 @@ func CheckPaused(profile string, enable bool) error { if enable { action = "enable" } - msg := fmt.Sprintf("can't %s addon on a paused cluster, please unpause the cluster firstly.", action) + msg := fmt.Sprintf("Can't %s addon on a paused cluster, please unpause the cluster first.", action) out.Styled(style.Shrug, msg) return errors.New(msg) }