From d62d0c40d22cc7aaffb425e45a475aa1449a38c6 Mon Sep 17 00:00:00 2001 From: Alexander Medvednikov Date: Sat, 6 Jun 2020 21:36:55 +0200 Subject: [PATCH] parser: fix typo --- vlib/v/parser/comptime.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vlib/v/parser/comptime.v b/vlib/v/parser/comptime.v index aa94157be6..6d390f6e15 100644 --- a/vlib/v/parser/comptime.v +++ b/vlib/v/parser/comptime.v @@ -122,7 +122,7 @@ fn (mut p Parser) vweb() ast.ComptimeCall { // if p.pref.is_debug { println('>>> compiling vweb HTML template "$path"') v_code := tmpl.compile_file(path) - if p.pref.verbose { + if p.pref.is_verbose { println('\n\n') println('>>> vweb template for ${path}:') println(v_code)