From 198c57a4c665a539961b6f764f19ac05807df8fa Mon Sep 17 00:00:00 2001 From: vilmibm Date: Tue, 20 Sep 2022 12:11:36 -0700 Subject: [PATCH] fix typo --- pkg/cmd/auth/logout/logout.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/cmd/auth/logout/logout.go b/pkg/cmd/auth/logout/logout.go index 98735b2e6..4495cd5f6 100644 --- a/pkg/cmd/auth/logout/logout.go +++ b/pkg/cmd/auth/logout/logout.go @@ -80,7 +80,7 @@ func logoutRun(opts *LogoutOptions) error { hostname = candidates[0] } else { selected, err := opts.Prompter.Select( - "What account to you want to log out of?", "", candidates) + "What account do you want to log out of?", "", candidates) if err != nil { return fmt.Errorf("could not prompt: %w", err) }