Fix some command help output formatting
This commit is contained in:
parent
85a86acfc9
commit
22fc62dbd5
|
@ -142,7 +142,7 @@ func (c *AuthEnableCommand) Flags() *FlagSets {
|
|||
Target: &c.flagOptions,
|
||||
Completion: complete.PredictAnything,
|
||||
Usage: "Key-value pair provided as key=value for the mount options. " +
|
||||
"This can be specified multiple times",
|
||||
"This can be specified multiple times.",
|
||||
})
|
||||
|
||||
f.BoolVar(&BoolVar{
|
||||
|
|
|
@ -55,8 +55,8 @@ func (c *AuthTuneCommand) Flags() *FlagSets {
|
|||
Name: "options",
|
||||
Target: &c.flagOptions,
|
||||
Completion: complete.PredictAnything,
|
||||
Usage: "Key-value pair provided as key=value for the mount options." +
|
||||
"This can be specified multiple times",
|
||||
Usage: "Key-value pair provided as key=value for the mount options. " +
|
||||
"This can be specified multiple times.",
|
||||
})
|
||||
|
||||
f.DurationVar(&DurationVar{
|
||||
|
|
|
@ -158,8 +158,8 @@ func (c *SecretsEnableCommand) Flags() *FlagSets {
|
|||
Name: "options",
|
||||
Target: &c.flagOptions,
|
||||
Completion: complete.PredictAnything,
|
||||
Usage: "Key-value pair provided as key=value for the mount options." +
|
||||
"This can be specified multiple times",
|
||||
Usage: "Key-value pair provided as key=value for the mount options. " +
|
||||
"This can be specified multiple times.",
|
||||
})
|
||||
|
||||
f.BoolVar(&BoolVar{
|
||||
|
|
|
@ -55,8 +55,8 @@ func (c *SecretsTuneCommand) Flags() *FlagSets {
|
|||
Name: "options",
|
||||
Target: &c.flagOptions,
|
||||
Completion: complete.PredictAnything,
|
||||
Usage: "Key-value pair provided as key=value for the mount options." +
|
||||
"This can be specified multiple times",
|
||||
Usage: "Key-value pair provided as key=value for the mount options. " +
|
||||
"This can be specified multiple times.",
|
||||
})
|
||||
|
||||
f.DurationVar(&DurationVar{
|
||||
|
|
Loading…
Reference in New Issue