Skip to content

Commit

Permalink
Fix typo in --full flag help
Browse files Browse the repository at this point in the history
Fixes a small typo in the help output for the --full flag.

Signed-off-by: hasheddan <georgedanielmangum@gmail.com>
  • Loading branch information
hasheddan committed Feb 1, 2023
1 parent 055a328 commit c40e9aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/cliplugins/workspace/plugin/kubeconfig.go
Original file line number Diff line number Diff line change
Expand Up @@ -784,7 +784,7 @@ func NewTreeOptions(streams genericclioptions.IOStreams) *TreeOptions {
// BindFlags binds fields to cmd's flagset.
func (o *TreeOptions) BindFlags(cmd *cobra.Command) {
o.Options.BindFlags(cmd)
cmd.Flags().BoolVarP(&o.Full, "full", "f", o.Full, "Show full workspaces names")
cmd.Flags().BoolVarP(&o.Full, "full", "f", o.Full, "Show full workspace names")
}

// Complete ensures all dynamically populated fields are initialized.
Expand Down

0 comments on commit c40e9aa

Please sign in to comment.