From f0d40cc46c85141f96da29e2a27647ce2ae49fcb Mon Sep 17 00:00:00 2001 From: Marc Di Luzio Date: Fri, 26 Jun 2020 23:31:57 +0100 Subject: [PATCH] Change help print to standard format --- cmd/rove/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/rove/main.go b/cmd/rove/main.go index 172494d..a789c4b 100644 --- a/cmd/rove/main.go +++ b/cmd/rove/main.go @@ -22,7 +22,7 @@ var defaultDataPath = path.Join(home, ".local/share/") // Command usage func printUsage() { - fmt.Fprintf(os.Stderr, "Usage: %s COMMAND [ARGS]...\n", os.Args[0]) + fmt.Fprintf(os.Stderr, "Usage: %s COMMAND [ARGS...]\n", os.Args[0]) fmt.Fprintln(os.Stderr, "\nCommands") fmt.Fprintln(os.Stderr, "\tstatus prints the server status") fmt.Fprintln(os.Stderr, "\tregister NAME registers an account and stores it (use with -name)")