From 1d39116a6e50fd6338b91f10cb9c34cf6c6c0564 Mon Sep 17 00:00:00 2001 From: Allie <13716824+ChildishGiant@users.noreply.github.com> Date: Thu, 27 Aug 2020 21:15:49 +0100 Subject: [PATCH] examples: fix a typo in the cli example (#6237) --- examples/cli.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/cli.v b/examples/cli.v index db45b6cc35..45ff128fc3 100644 --- a/examples/cli.v +++ b/examples/cli.v @@ -55,7 +55,7 @@ fn greet_func(cmd Command) { } else { println('Unsupported language') - println('Supported are `englisch`, `german` and `dutch`.') + println('Supported languages are `english`, `german` and `dutch`.') break } }