gofmt fix

This commit is contained in:
Dmytro Maluka
2025-12-03 01:19:35 +01:00
parent 70dfc7fcb4
commit 118f5a3e35

View File

@@ -52,7 +52,7 @@ func findLineParams(b *Buffer, start, end Loc, i int, r *regexp.Regexp) ([]byte,
r = regexp.MustCompile(".(?:" + r.String() + ")")
} else if padMode == padEnd {
r = regexp.MustCompile("(?:" + r.String() + ").")
} else {
} else {
// padMode == padStart|padEnd
r = regexp.MustCompile(".(?:" + r.String() + ").")
}