@@ -1103,7 +1103,7 @@ Perl modules is C<PERL5LIB>.
1103
1103
1104
1104
$ PERL5LIB="/some/module/lib" perl program.pl
1105
1105
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
1107
1107
probably guessed, you just need to use C < PERL6LIB > :
1108
1108
1109
1109
$ PERL6LIB="/some/module/lib" perl6 program.p6
@@ -1113,10 +1113,10 @@ library path within the program via the C<use lib> pragma:
1113
1113
1114
1114
use lib '/some/module/lib'
1115
1115
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
1117
1117
opposed to the equivalent usage of C < PERL5LIB > in Perl5) and shouldn't be
1118
1118
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
1120
1120
system paths.
1121
1121
1122
1122
= head2 Misc.
@@ -1220,7 +1220,7 @@ statement:
1220
1220
1221
1221
In order to get this to work, one obviously has to jump through many hoops.
1222
1222
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
1224
1224
the correct manner for you, so one should consider very carefully whether or
1225
1225
not writing one's own C < EXPORT > routine is worthwhile.
1226
1226
@@ -1370,11 +1370,11 @@ read and further processed into Perl 6 code by a MAD parser.
1370
1370
Please consult #perl6 to find out the best release of Perl 5 to use for
1371
1371
your MAD science experiments.
1372
1372
1373
- = head3 Perl-ToPerl6
1373
+ = head3 Perl-ToPerl 6
1374
1374
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
1376
1376
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
1378
1378
transformers are configurable and pluggable, so you can create and
1379
1379
contribute your own transformers, and customize existing transformers to
1380
1380
your own needs. You can install the latest release from CPAN, or follow
0 commit comments