Skip to content

Commit f4216dd

Browse files
committed
list tasks: ensure at least one space after colon
1 parent 60186bd commit f4216dd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

help.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ func (e *Executor) PrintTasksHelp() {
1717
// Format in tab-separated columns with a tab stop of 8.
1818
w := tabwriter.NewWriter(e.Stdout, 0, 8, 0, '\t', 0)
1919
for _, task := range tasks {
20-
fmt.Fprintln(w, fmt.Sprintf("* %s:\t%s", task, e.Tasks[task].Desc))
20+
fmt.Fprintln(w, fmt.Sprintf("* %s: \t%s", task, e.Tasks[task].Desc))
2121
}
2222
w.Flush()
2323
}

0 commit comments

Comments
 (0)