mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
fmt: fix a space in const decl
This commit is contained in:
@@ -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 {
|
||||||
|
|||||||
Reference in New Issue
Block a user