Skip to content

Commit

Permalink
Remove unnecessary line break
Browse files Browse the repository at this point in the history
  • Loading branch information
dominikschulz committed Oct 25, 2017
1 parent 10c2866 commit b61bee4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/termwiz/selection.go
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ func GetSelection(ctx context.Context, prompt, usage string, choices []string) (
if cur == i {
mark = ">"
}
tbprint(0, 1+i-offset, coldef, coldef, fmt.Sprintf("%s %s\n", mark, c))
tbprint(0, 1+i-offset, coldef, coldef, fmt.Sprintf("%s %s", mark, c))
}
usageLine := usage
if usageLine == "" {
Expand Down

0 comments on commit b61bee4

Please sign in to comment.