From 9976641be02a4979b8baf1e7f9694fafa0fb7d31 Mon Sep 17 00:00:00 2001 From: Alexander Medvednikov Date: Wed, 30 Dec 2020 02:24:38 +0100 Subject: [PATCH] fmt: fix a space in const decl --- vlib/v/fmt/fmt.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vlib/v/fmt/fmt.v b/vlib/v/fmt/fmt.v index 923df31df3..e589bc763a 100644 --- a/vlib/v/fmt/fmt.v +++ b/vlib/v/fmt/fmt.v @@ -1994,7 +1994,7 @@ pub fn (mut f Fmt) const_decl(it ast.ConstDecl) { } f.write('const ') if it.is_block { - f.writeln(' (') + f.writeln('(') } mut max := 0 for field in it.fields {