Skip to content

Commit 8a134ae

Browse files
author
Brock Wilcox
committed
Mass change Perl6 -> Perl 6
1 parent 876ac46 commit 8a134ae

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

doc/Language/5to6-nutshell.pod

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1103,7 +1103,7 @@ Perl modules is C<PERL5LIB>.
11031103
11041104
$ PERL5LIB="/some/module/lib" perl program.pl
11051105
1106-
In Perl6 this is similar, one merely needs to change a number! As you
1106+
In Perl 6 this is similar, one merely needs to change a number! As you
11071107
probably guessed, you just need to use C<PERL6LIB>:
11081108
11091109
$ PERL6LIB="/some/module/lib" perl6 program.p6
@@ -1113,10 +1113,10 @@ library path within the program via the C<use lib> pragma:
11131113
11141114
use lib '/some/module/lib'
11151115
1116-
Note that C<PERL6LIB> is more of a developer convenience in Perl6 (as
1116+
Note that C<PERL6LIB> is more of a developer convenience in Perl 6 (as
11171117
opposed to the equivalent usage of C<PERL5LIB> in Perl5) and shouldn't be
11181118
used by module consumers as it could be removed in the future. This is
1119-
because Perl6's module loading isn't directly compatible with operating
1119+
because Perl 6's module loading isn't directly compatible with operating
11201120
system paths.
11211121
11221122
=head2 Misc.
@@ -1220,7 +1220,7 @@ statement:
12201220
12211221
In order to get this to work, one obviously has to jump through many hoops.
12221222
In the standard use-case where one specifies the functions to be exported
1223-
via the C<is export> role, Perl6 automatically creates the C<EXPORT> sub in
1223+
via the C<is export> role, Perl 6 automatically creates the C<EXPORT> sub in
12241224
the correct manner for you, so one should consider very carefully whether or
12251225
not writing one's own C<EXPORT> routine is worthwhile.
12261226
@@ -1370,11 +1370,11 @@ read and further processed into Perl 6 code by a MAD parser.
13701370
Please consult #perl6 to find out the best release of Perl 5 to use for
13711371
your MAD science experiments.
13721372
1373-
=head3 Perl-ToPerl6
1373+
=head3 Perl-ToPerl 6
13741374
1375-
Jeff Goff's Perl::ToPerl6 module for Perl 5 is designed around
1375+
Jeff Goff's Perl::ToPerl 6 module for Perl 5 is designed around
13761376
Perl::Critic's framework. It aims to convert Perl5 to compilable (if not
1377-
necessarily running) Perl6 code with the bare minimum of changes. Code
1377+
necessarily running) Perl 6 code with the bare minimum of changes. Code
13781378
transformers are configurable and pluggable, so you can create and
13791379
contribute your own transformers, and customize existing transformers to
13801380
your own needs. You can install the latest release from CPAN, or follow

doc/Language/5to6-perlfunc.pod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ method, i. e. C<$y = $x.chomp>.
211211
212212
=item chop VARIABLE
213213
214-
As with C<chomp>, in Perl6, this returns the chopped string, rather than chopping in
214+
As with C<chomp>, in Perl 6, this returns the chopped string, rather than chopping in
215215
place. I. e. C<$x = "howdy";$y = chop($x);> results in C<$x> being "howdy" and
216216
C<$y> being "howd". Also works as a method: C<$y = $x.chop>
217217

doc/Language/control.pod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ also be written as:
2323
2424
=head2 X<blocks|control flow>
2525
26-
Like many languages, Perl6 uses C<blocks> enclosed by C<{> and C<}> to turn
26+
Like many languages, Perl 6 uses C<blocks> enclosed by C<{> and C<}> to turn
2727
multiple statements into a single statement. It is ok to skip the semicolon
2828
between the last statement in a block and the closing C<}>.
2929

0 commit comments

Comments
 (0)