Skip to content
This repository was archived by the owner on Feb 16, 2023. It is now read-only.

Commit 46d82c2

Browse files
committed
Update help text
1 parent 49ab0bd commit 46d82c2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

internals/secrethub/generate.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ func (cmd *GenerateSecretCommand) Register(r command.Registerer) {
6868
clause.Flag("length", "The length of the generated secret. Defaults to "+strconv.Itoa(defaultLength)).PlaceHolder(strconv.Itoa(defaultLength)).Short('l').SetValue(&cmd.lengthFlag)
6969
clause.Flag("min", "<charset>:<n> Ensure that the resulting password contains at least n characters from the given character set.").SetValue(&cmd.mins)
7070
clause.Flag("clip", "Copy the generated value to the clipboard. The clipboard is automatically cleared after "+units.HumanDuration(cmd.clearClipboardAfter)+".").Short('c').BoolVar(&cmd.copyToClipboard)
71-
clause.Flag("charset", "Charset(s) to use when generating secret.").SetValue(&cmd.charsetFlag)
71+
clause.Flag("charset", "Define the set of characters to randomly choose a password from. Defaults to alphanumeric.").SetValue(&cmd.charsetFlag)
7272
clause.Flag("symbols", "Include symbols in secret.").Short('s').Hidden().SetValue(&cmd.symbolsFlag)
7373
clause.Arg("rand-command", "").Hidden().StringVar(&cmd.secondArg)
7474
clause.Arg("length", "").Hidden().SetValue(&cmd.lengthArg)

0 commit comments

Comments
 (0)