Skip to content

Commit

Permalink
Fix.
Browse files Browse the repository at this point in the history
Add the mention of ‘-v’ flag in the doc comment.
  • Loading branch information
looshch committed Jan 14, 2025
1 parent 4eee4db commit 2d62e47
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gouse.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
//
// Usage:
//
// gouse [-w] [file paths...]
// gouse [-v] [-w] [file paths...]
//
// By default, gouse accepts code from stdin or from a file provided as a path
// argument and writes the toggled version to stdout. ‘-w’ flag writes the
Expand Down Expand Up @@ -61,7 +61,7 @@ var (
errCannotWriteToStdin = errors.New(
"cannot use ‘-w’ flag with standard input",
)
errMustWriteToFiles = errors.New(
errMustWriteToFiles = errors.New(
"must use ‘-w’ flag with more than one path",
)
)
Expand Down

0 comments on commit 2d62e47

Please sign in to comment.