Skip to content

Commit 80fbb15

Browse files
committed
whitespace
1 parent 20d6a3c commit 80fbb15

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

doc/Language/create-cli.pod6

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22
33
=TITLE Command Line Interface
44
5-
=SUBTITLE Creating your own CLI in Perl 6
5+
=SUBTITLE Creating your own CLI in Perl 6
66
77
X<|command line arguments>
88
=head1 Command Line Interface - an overview
99
10-
The default command line interface of Perl 6 scripts consists of three parts:
10+
The default command line interface of Perl 6 scripts consists of three parts:
1111
1212
=item parsing the command line parameters into a L<capture|/type/Capture>
1313
@@ -160,7 +160,7 @@ Which would improve the usage message like this:
160160
$ perl6 frobnicate.p6 doesntexist.dat
161161
Usage:
162162
frobnicate.p6 [--length=<Int>] [--verbose] [<file>]
163-
163+
164164
[<file>] an existing file to frobnicate
165165
--length=<Int> length needed for frobnication
166166
--verbose required verbosity
@@ -279,7 +279,7 @@ the compiler will output a default generated usage message.
279279
The default usage message is available inside C<sub USAGE> via the read-only
280280
C<$*USAGE> variable. It will be generated based on available C<sub MAIN>
281281
candidates and their parameters. As shown before, you can specify an
282-
additional extended description for each candidate using a
282+
additional extended description for each candidate using a
283283
C<#|(...)> Pod block to set L«C<WHY>|/routine/WHY».
284284
285285
=head1 Intercepting CLI argument parsing (2018.10, v6.d and later)

0 commit comments

Comments
 (0)