adjust help message

This commit is contained in:
Chris Lu
2021-03-03 02:12:46 -08:00
parent c0842fe99f
commit 40ff30b83f
2 changed files with 2 additions and 2 deletions

View File

@@ -886,7 +886,7 @@ func (f *FlagSet) parseOne() (bool, error) {
// The return value will be ErrHelp if -help or -h were set but not defined.
func (f *FlagSet) Parse(arguments []string) error {
if _, ok := f.formal[DefaultConfigFlagName]; !ok {
f.String(DefaultConfigFlagName, "", "file with command line options with each line in optionName=optionValue format")
f.String(DefaultConfigFlagName, "", "a file of command line options, each line in optionName=optionValue format")
}
f.parsed = true