From 7bcc0f214c777841ac2d69e0a93d2b0b63aafecf Mon Sep 17 00:00:00 2001 From: Elizabeth Mattijsen Date: Fri, 12 Oct 2018 19:16:28 +0200 Subject: [PATCH] Handle remarks so far --- doc/Language/create-cli.pod6 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/Language/create-cli.pod6 b/doc/Language/create-cli.pod6 index 5d095a08e..214a8739d 100644 --- a/doc/Language/create-cli.pod6 +++ b/doc/Language/create-cli.pod6 @@ -40,9 +40,9 @@ The sub with the special name C
will be executed after all relevant entry phasers (C, C, C, C
, C) have been run and
 the mainline of the script have been executed.  No error will occur if there
 is no MAIN sub: your script will then just have to do the work, such as
-argument parsinng, in the mainline of the script.
+argument parsing, in the mainline of the script.
 
-Any normal exit from the MAIN sub, will result in an exit code of C<0>,
+Any normal exit from the MAIN sub will result in an exit code of C<0>,
 indicating success.  Any return value of the MAIN sub will be ignored.
 If an exception is thrown that is not handled inside the MAIN sub, then the
 exit code will be C<1>.  If the dispatch to MAIN failed, a usage message
@@ -50,7 +50,7 @@ will be displayed on STDERR and the exit code will be C<2>.
 
 The command line parameters are present in the C<@*ARGS> dynamic variable
 and may be altered in the mainline of the script before the C
unit is -getting called. +called. The signature of (the candidates of the multi) sub MAIN determines which candidate will actually be called using the standard