ci: vfmt fmt.v ...

pull/13127/head^2
Delyan Angelov 2022-01-11 17:32:15 +02:00
parent f3d8bbdf3d
commit c27ffc6054
No known key found for this signature in database
GPG Key ID: 66886C0F12D595ED
1 changed files with 2 additions and 2 deletions

View File

@ -1893,8 +1893,8 @@ fn branch_is_single_line(b ast.IfBranch) bool {
}
pub fn (mut f Fmt) if_guard_expr(node ast.IfGuardExpr) {
if node.is_mut {
f.write('mut ')
if node.is_mut {
f.write('mut ')
}
f.write(node.var_name + ' := ')
f.expr(node.expr)