Skip to content

Commit f2f4b45

Browse files
committed
Fmt
1 parent af61a0f commit f2f4b45

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

completer.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,6 @@ func splitCompWords(input string) (words []string, remainder string, err error)
262262

263263
var word string
264264
word, input, err = splitCompWord(input, &buf)
265-
266265
if err != nil {
267266
return words, word + input, err
268267
}

run.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ func (c *Console) Start() error {
3131

3232
// If NewlineAfter is set but NewlineWhenEmpty is not set, we do a check to see
3333
// if the last line was empty. If it wasn't, then we can print.
34-
//fmt.Println(lastLine, len(lastLine))
34+
// fmt.Println(lastLine, len(lastLine))
3535
if c.NewlineAfter {
3636
if !c.NewlineWhenEmpty && i != 0 {
3737
// Print on the condition that the last input wasn't empty.

0 commit comments

Comments
 (0)