Skip to content

Commit 118f5a3

Browse files
committed
gofmt fix
1 parent 70dfc7f commit 118f5a3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/buffer/search.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ func findLineParams(b *Buffer, start, end Loc, i int, r *regexp.Regexp) ([]byte,
5252
r = regexp.MustCompile(".(?:" + r.String() + ")")
5353
} else if padMode == padEnd {
5454
r = regexp.MustCompile("(?:" + r.String() + ").")
55-
} else {
55+
} else {
5656
// padMode == padStart|padEnd
5757
r = regexp.MustCompile(".(?:" + r.String() + ").")
5858
}

0 commit comments

Comments
 (0)