Skip to content

Commit

Permalink
list tasks: ensure at least one space after colon
Browse files Browse the repository at this point in the history
  • Loading branch information
andreynering committed Nov 2, 2017
1 parent 60186bd commit f4216dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion help.go
Original file line number Diff line number Diff line change
Expand Up @@ -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()
}
Expand Down

0 comments on commit f4216dd

Please sign in to comment.