Skip to content

Commit ad42697

Browse files
committed
usage: make constant private
1 parent dce4a12 commit ad42697

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

git-sizer.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import (
1717
"github.com/github/git-sizer/sizes"
1818
)
1919

20-
const Usage = `usage: git-sizer [OPTS]
20+
const usage = `usage: git-sizer [OPTS]
2121
2222
--threshold THRESHOLD minimum level of concern (i.e., number of stars)
2323
that should be reported. Default:
@@ -116,7 +116,7 @@ func mainImplementation(args []string) error {
116116

117117
flags := pflag.NewFlagSet("git-sizer", pflag.ContinueOnError)
118118
flags.Usage = func() {
119-
fmt.Print(Usage)
119+
fmt.Print(usage)
120120
}
121121

122122
flags.VarP(

0 commit comments

Comments
 (0)