@@ -778,7 +778,7 @@ Regular expression syntax is somewhat different in Perl 6, but the match
778
778
operator still exists. If you're trying to rewrite some Perl 5 code, the
779
779
most important difference is that C < =~ > is replaced by the smart match
780
780
operator, C < ~~ > . Similarly, C < !~ > is replaced by C < !~~ > . Options for
781
- regex operators are adverbs and are complicated. for details, see
781
+ regex operators are adverbs and are complicated. For details, see
782
782
L < http://doc.perl6.org/language/regexes#Adverbs >
783
783
784
784
= head2 map
@@ -1112,7 +1112,7 @@ currently exist...
1112
1112
1113
1113
= item rename OLDNAME,NEWNAME
1114
1114
1115
- Still avialable in Perl 6.
1115
+ Still available in Perl 6.
1116
1116
1117
1117
= head2 requires
1118
1118
@@ -1172,7 +1172,7 @@ Regular expression syntax is somewhat different in Perl 6, but the
1172
1172
substitution operator exists. If you're trying to rewrite some
1173
1173
Perl 5 code, the most important difference is that C < =~ > is replaced
1174
1174
by the smart match operator, C < ~~ > . Similarly, C < !~ > is C < !~~ > .
1175
- Options for regex operators are adverbs and are complicated. for
1175
+ Options for regex operators are adverbs and are complicated. For
1176
1176
details, see L < http://doc.perl6.org/language/regexes#Adverbs >
1177
1177
1178
1178
= head2 say
@@ -1184,7 +1184,7 @@ details, see L<http://doc.perl6.org/language/regexes#Adverbs>
1184
1184
= item say
1185
1185
1186
1186
C < say > can be used as a function, defaulting to standard out. To use
1187
- C < say > as a function with a filehndle I < instead > of standard out, you
1187
+ C < say > as a function with a filehandle I < instead > of standard out, you
1188
1188
need to put a colon after the filehandle. I. e. C < say $fh: "Howdy!" > .
1189
1189
The use of the colon as an "invocant marker" here is discussed at
1190
1190
L < http://design.perl6.org/S03.html#line_4019 > . Alternately, you can use
@@ -1453,7 +1453,7 @@ C<study> is no more.
1453
1453
1454
1454
Unsurprisingly, we still have subroutines! You can have a signature in
1455
1455
your subroutine which allows you to specify arguments. Nevertheless, in
1456
- the absense of a signature (and only in the absence of a signature),
1456
+ the absence of a signature (and only in the absence of a signature),
1457
1457
C < @_ > still contains what is passed to the function. So, in theory, you
1458
1458
don't need to change that aspect of a function if porting from Perl 5 to
1459
1459
Perl 6 (although you should probably consider the option of using a
0 commit comments