Skip to content

Commit f714c5d

Browse files
authored
docs: uppercase command option descriptions for consistency (#4135)
1 parent 0605100 commit f714c5d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pkg/commands/root.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -149,10 +149,10 @@ func (e *Executor) needVersionOption() bool {
149149
}
150150

151151
func initRootFlagSet(fs *pflag.FlagSet, cfg *config.Config, needVersionOption bool) {
152-
fs.BoolVarP(&cfg.Run.IsVerbose, "verbose", "v", false, wh("verbose output"))
152+
fs.BoolVarP(&cfg.Run.IsVerbose, "verbose", "v", false, wh("Verbose output"))
153153

154154
var silent bool
155-
fs.BoolVarP(&silent, "silent", "s", false, wh("disables congrats outputs"))
155+
fs.BoolVarP(&silent, "silent", "s", false, wh("Disables congrats outputs"))
156156
if err := fs.MarkHidden("silent"); err != nil {
157157
panic(err)
158158
}

0 commit comments

Comments
 (0)