From df446b47fc3ce8b8ddf647d46766c46bdc02f73f Mon Sep 17 00:00:00 2001 From: Greg Smith Date: Wed, 6 Mar 2024 14:08:59 -0800 Subject: [PATCH] fixed doc string --- pkg/cmd/auth/token/token.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/cmd/auth/token/token.go b/pkg/cmd/auth/token/token.go index c507645ce..10a301965 100644 --- a/pkg/cmd/auth/token/token.go +++ b/pkg/cmd/auth/token/token.go @@ -46,7 +46,7 @@ func NewCmdToken(f *cmdutil.Factory, runF func(*TokenOptions) error) *cobra.Comm } cmd.Flags().StringVarP(&opts.Hostname, "hostname", "h", "", "The hostname of the GitHub instance authenticated with") - cmd.Flags().StringVarP(&opts.Username, "user", "u", "", "The account to log out of") + cmd.Flags().StringVarP(&opts.Username, "user", "u", "", "The account to output the token for") cmd.Flags().BoolVarP(&opts.SecureStorage, "secure-storage", "", false, "Search only secure credential store for authentication token") _ = cmd.Flags().MarkHidden("secure-storage")