fmt: fix a space in const decl
parent
8e4152f053
commit
9976641be0
|
@ -1994,7 +1994,7 @@ pub fn (mut f Fmt) const_decl(it ast.ConstDecl) {
|
||||||
}
|
}
|
||||||
f.write('const ')
|
f.write('const ')
|
||||||
if it.is_block {
|
if it.is_block {
|
||||||
f.writeln(' (')
|
f.writeln('(')
|
||||||
}
|
}
|
||||||
mut max := 0
|
mut max := 0
|
||||||
for field in it.fields {
|
for field in it.fields {
|
||||||
|
|
Loading…
Reference in New Issue