diff options
author | EuAndreh <eu@euandre.org> | 2025-05-06 21:48:30 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2025-05-06 21:48:30 -0300 |
commit | 7f6fe701d34fb0df4718bf1fd73a5648aec8bb8d (patch) | |
tree | 91812476db35ee4d97354c7a43f796973c184080 | |
parent | src/gistatic.go: Use ExitIf() from gobang (diff) | |
download | gistatic-7f6fe701d34fb0df4718bf1fd73a5648aec8bb8d.tar.gz gistatic-7f6fe701d34fb0df4718bf1fd73a5648aec8bb8d.tar.xz |
src/gistatic.go: Add missing trailing newline to usage() output
-rw-r--r-- | src/gistatic.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gistatic.go b/src/gistatic.go index d326162..fdbd2c4 100644 --- a/src/gistatic.go +++ b/src/gistatic.go @@ -21,7 +21,7 @@ type argsT struct{ func usage(argv0 string, w io.Writer) { fmt.Fprintf( w, - "Usage: %s [-o DIRECTORY] [-u CLONE_URL] REPOSITORY", + "Usage: %s [-o DIRECTORY] [-u CLONE_URL] REPOSITORY\n", argv0, ) } |