Skip to content

Commit a24b3fa

Browse files
committed
clarify phrasing
1 parent 29e7f54 commit a24b3fa

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

doc/Language/functions.pod6

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -857,7 +857,7 @@ and its signature is the means by which command line arguments can be
857857
parsed. Multi methods are supported and a usage method is automatically
858858
generated and displayed if no command line arguments are provided. All command
859859
line arguments are also available in
860-
L<C<@*ARGS>|/language/variables#Dynamic_variables>, it can be mutated before
860+
L<C<@*ARGS>|/language/variables#Dynamic_variables>, which can be mutated before
861861
being processed by C<MAIN>.
862862
863863
The return value of C<MAIN> is ignored. To provide an exitcode other then 0,
@@ -908,8 +908,8 @@ positional parameter. For example, the above program can be called with:
908908
X<|USAGE>
909909
910910
If no multi candidate of C<MAIN> is found for the given command line
911-
parameters, the sub C<USAGE> is called. If no such method is found, output a
912-
generated usage message.
911+
parameters, the sub C<USAGE> is called. If no such method is found,
912+
the compiler will output a generated usage message.
913913
914914
sub MAIN(Int $i){ say $i == 42 ?? 'answer' !! 'dunno' }
915915

0 commit comments

Comments
 (0)