Skip to content

Commit

Permalink
Merge pull request #126 from alexandregv/fix-typo
Browse files Browse the repository at this point in the history
Fix typo "variabless"
  • Loading branch information
posener authored Mar 24, 2024
2 parents 23812f8 + ed52336 commit f44b4f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/goreadme/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ func init() {
flag.StringVar(&cfg.Title, "title", "", "Override readme title. Default is package name.")
flag.BoolVar(&cfg.RecursiveSubPackages, "recursive", false, "Load docs recursively.")
flag.BoolVar(&cfg.Consts, "constants", false, "Write package constants section, and if 'types' is specified, also write per-type constants section.")
flag.BoolVar(&cfg.Vars, "variabless", false, "Write package variables section, and if 'types' is specified, also write per-type variables section.")
flag.BoolVar(&cfg.Vars, "variables", false, "Write package variables section, and if 'types' is specified, also write per-type variables section.")
flag.BoolVar(&cfg.Functions, "functions", false, "Write functions section.")
flag.BoolVar(&cfg.Types, "types", false, "Write types section.")
flag.BoolVar(&cfg.Factories, "factories", false, "If 'types' is specified, write section for functions returning each type.")
Expand Down

0 comments on commit f44b4f9

Please sign in to comment.