From f4216dd67f136e177df55721e6c70a33136b2dd4 Mon Sep 17 00:00:00 2001 From: Andrey Nering Date: Thu, 2 Nov 2017 09:45:00 -0200 Subject: [PATCH] list tasks: ensure at least one space after colon --- help.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/help.go b/help.go index 9681d90d..f009e080 100644 --- a/help.go +++ b/help.go @@ -17,7 +17,7 @@ func (e *Executor) PrintTasksHelp() { // Format in tab-separated columns with a tab stop of 8. w := tabwriter.NewWriter(e.Stdout, 0, 8, 0, '\t', 0) for _, task := range tasks { - fmt.Fprintln(w, fmt.Sprintf("* %s:\t%s", task, e.Tasks[task].Desc)) + fmt.Fprintln(w, fmt.Sprintf("* %s: \t%s", task, e.Tasks[task].Desc)) } w.Flush() }