From 171baca07d2ed3f8998ad2550f5a4b5bb31d3cd3 Mon Sep 17 00:00:00 2001 From: Heath Stewart Date: Wed, 27 Apr 2022 00:37:28 -0700 Subject: [PATCH] Clarify `label edit --name` switch (#5525) Follow-up from #5519 --- pkg/cmd/label/edit.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/cmd/label/edit.go b/pkg/cmd/label/edit.go index f381b754d..2f7652b56 100644 --- a/pkg/cmd/label/edit.go +++ b/pkg/cmd/label/edit.go @@ -67,7 +67,7 @@ func newCmdEdit(f *cmdutil.Factory, runF func(*editOptions) error) *cobra.Comman cmd.Flags().StringVarP(&opts.Description, "description", "d", "", "Description of the label") cmd.Flags().StringVarP(&opts.Color, "color", "c", "", "Color of the label") - cmd.Flags().StringVarP(&opts.NewName, "name", "n", "", "Name of the label") + cmd.Flags().StringVarP(&opts.NewName, "name", "n", "", "New name of the label") return cmd }