We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9bf2c48 commit 2d3bf02Copy full SHA for 2d3bf02
1 file changed
main.go
@@ -147,9 +147,9 @@ func (cli *CLI) Run(_args []string) int {
147
}
148
149
if len(args) < 2 {
150
- fmt.Fprintf(cli.errStream, "Usage git gsub [options] FROM TO [PATHS]\n")
151
- fmt.Fprintf(cli.errStream, "\nOptions:\n")
152
- fmt.Fprintf(cli.errStream, flag.CommandLine.FlagUsages())
+ fmt.Fprint(cli.errStream, "Usage git gsub [options] FROM TO [PATHS]\n")
+ fmt.Fprint(cli.errStream, "\nOptions:\n")
+ fmt.Fprint(cli.errStream, flag.CommandLine.FlagUsages())
153
return 1
154
155
0 commit comments