From 72de932c7e7e237a46748cd2b83716afd1379b52 Mon Sep 17 00:00:00 2001 From: gutmet Date: Sun, 9 Dec 2018 10:06:27 +0100 Subject: [PATCH] add newline after command name --- goutil.go | 1 + 1 file changed, 1 insertion(+) diff --git a/goutil.go b/goutil.go index ea0d5dd..ef06323 100644 --- a/goutil.go +++ b/goutil.go @@ -176,6 +176,7 @@ type commandCollection map[string]Command func UsageAndExit(cmds commandCollection) { fmt.Println(os.Args[0]) + fmt.Println() fmt.Println("Possible commands:") for _, cmd := range cmds { fmt.Println(" " + cmd.cmd)