Skip to content

Commit ee3d797

Browse files
committed
whitespace
1 parent a331f89 commit ee3d797

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

doc/Language/functions.pod6

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1000,7 +1000,7 @@ to L<exit|https://docs.perl6.org/routine/exit> has to be performed.
10001000
10011001
With C<touch.dat> present, this will work this way
10021002
=begin code :lang<shell>
1003-
$ perl6 Main.p6
1003+
$ perl6 Main.p6
10041004
24
10051005
file.dat
10061006
Verbosity off
@@ -1009,7 +1009,7 @@ Verbosity off
10091009
Or this way with C<-v> or C<--verbose>
10101010
10111011
=begin code :lang<shell>
1012-
$ perl6 Main.p6 -v
1012+
$ perl6 Main.p6 -v
10131013
24
10141014
file.dat
10151015
Verbosity on
@@ -1018,7 +1018,7 @@ Verbosity on
10181018
The C<:v(:$verbose)> is an alias, as explained in
10191019
L<Signatures|/type/Signature#Positional_vs._Named>. In fact, since
10201020
this is an alias, both C<verbose> and C<v> can use single or double
1021-
dashes (C<-> or C<-->).
1021+
dashes (C<-> or C<-->).
10221022
10231023
=head2 C<%*SUB-MAIN-OPTS>
10241024

doc/Language/module-packages.pod6

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
=SUBTITLE Creating module packages for code reuse.
66
77
8-
I<N.B.> "Module" is an overloaded term in Perl 6; this document
8+
I<N.B.> "Module" is an overloaded term in Perl 6; this document
99
focuses on use of the C<module> declarator.
1010
1111
@@ -180,7 +180,7 @@ it is registered in C<GLOBAL>'s symbol table.
180180
181181
=head3 Lexical aliasing and safety
182182
183-
Thankfully, Perl 6 protects us from accidentally clobbering call
183+
Thankfully, Perl 6 protects us from accidentally clobbering call
184184
site definitions (e.g. builtins). Consider the following addition
185185
to C<Bar.pm6>:
186186

doc/Type/Channel.pod6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ Close the C<Channel>, normally. This makes subsequent C<send> calls die with
100100
L<X::Channel::SendOnClosed>. Subsequent calls of C<.receive> may still drain
101101
any remaining items that were previously sent, but if the queue is empty, will
102102
throw an L<X::Channel::ReceiveOnClosed> exception. A C<Seq> produced by an
103-
C<@()> or by the C<.list> method will not terminate until this has been done.
103+
C<@()> or by the C<.list> method will not terminate until this has been done.
104104
A L<whenever|/language/concurrency#index-entry-whenever>-block will also
105105
terminate properly on a closed channel.
106106

0 commit comments

Comments
 (0)