Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fix: use proper formatter for usage template
  • Loading branch information
mmoeller committed Feb 20, 2021
commit f4361274b78cb1a8480cf72173b1450d88124413
2 changes: 1 addition & 1 deletion imaginary.go
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ type URLSignature struct {

func main() {
flag.Usage = func() {
_, _ = fmt.Fprint(os.Stderr, usage, Version, runtime.NumCPU())
_, _ = fmt.Fprintf(os.Stderr, usage, Version, runtime.NumCPU())
}
flag.Parse()

Expand Down