fmt: ` ` fix

pull/4290/head
Alexander Medvednikov 2020-04-08 01:04:04 +02:00
parent 9984691eaf
commit cdcb8b6c06
1 changed files with 1 additions and 1 deletions

View File

@ -654,7 +654,7 @@ fn (f mut Fmt) expr(node ast.Expr) {
fn (f mut Fmt) wrap_long_line() {
if f.line_len > max_len {
if f.out.buf[f.out.buf.len - 1] == ' ' {
if f.out.buf[f.out.buf.len - 1] == ` ` {
f.out.go_back(1)
}
f.write('\n' + tabs[f.indent + 1])