Skip to content

Commit

Permalink
cmd/hydroxide: fix redundant newline when printing usage
Browse files Browse the repository at this point in the history
    cmd/hydroxide/main.go:558:3: fmt.Println arg list ends with redundant newline
  • Loading branch information
emersion committed May 6, 2022
1 parent 9ef1b1c commit 9eedfb6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/hydroxide/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -555,7 +555,7 @@ func main() {
log.Fatal(err)
}
default:
fmt.Println(usage)
fmt.Print(usage)
if cmd != "help" {
log.Fatal("Unrecognized command")
}
Expand Down

0 comments on commit 9eedfb6

Please sign in to comment.