From 76e373a5f45df0e4ad74ff2b1e1ca78446a92f96 Mon Sep 17 00:00:00 2001 From: Lukas Neubert Date: Wed, 30 Sep 2020 14:57:22 +0200 Subject: [PATCH] v help: fix newline (#6510) --- vlib/cli/help.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vlib/cli/help.v b/vlib/cli/help.v index 65e1fe70d3..fb59fec780 100644 --- a/vlib/cli/help.v +++ b/vlib/cli/help.v @@ -42,7 +42,7 @@ fn print_help_for_command(help_cmd Command) ? { } if !found { args := help_cmd.args.join(' ') - print('Invalid command: $args') + println('Invalid command: $args') return } }