1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

fmt: fix test

This commit is contained in:
Alexander Medvednikov 2020-02-21 22:56:44 +01:00
parent 15c288b444
commit 3c3ca1e61f

View File

@ -131,7 +131,7 @@ fn (f mut Fmt) stmt(node ast.Stmt) {
f.writeln('')
}
f.indent--
f.writeln('\n)\n')
f.writeln(')\n')
}
ast.ExprStmt {
f.expr(it.expr)