We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dce4a12 commit ad42697Copy full SHA for ad42697
1 file changed
git-sizer.go
@@ -17,7 +17,7 @@ import (
17
"github.com/github/git-sizer/sizes"
18
)
19
20
-const Usage = `usage: git-sizer [OPTS]
+const usage = `usage: git-sizer [OPTS]
21
22
--threshold THRESHOLD minimum level of concern (i.e., number of stars)
23
that should be reported. Default:
@@ -116,7 +116,7 @@ func mainImplementation(args []string) error {
116
117
flags := pflag.NewFlagSet("git-sizer", pflag.ContinueOnError)
118
flags.Usage = func() {
119
- fmt.Print(Usage)
+ fmt.Print(usage)
120
}
121
122
flags.VarP(
0 commit comments