@@ -626,7 +626,7 @@ Regular expression syntax is somewhat different in Perl 6, but the match
626
626
operator still exists. If you're trying to rewrite some Perl 5 code, the
627
627
most important difference is that C < =~ > is replaced by the smart match
628
628
operator, C < ~~ > . Similarly, C < !~ > is replaced by C < !~~ > . Options for
629
- regex operators are adverbs and are complicated. for details, see
629
+ regex operators are adverbs and are complicated. For details, see
630
630
L < http://doc.perl6.org/language/regexes#Adverbs >
631
631
632
632
= item map BLOCK LIST
@@ -896,7 +896,7 @@ currently exist...
896
896
897
897
= item rename OLDNAME,NEWNAME
898
898
899
- Still avialable in Perl 6.
899
+ Still available in Perl 6.
900
900
901
901
= item require VERSION
902
902
@@ -940,7 +940,7 @@ Regular expression syntax is somewhat different in Perl 6, but the
940
940
substitution operator exists. If you're trying to rewrite some
941
941
Perl 5 code, the most important difference is that C < =~ > is replaced
942
942
by the smart match operator, C < ~~ > . Similarly, C < !~ > is C < !~~ > .
943
- Options for regex operators are adverbs and are complicated. for
943
+ Options for regex operators are adverbs and are complicated. For
944
944
details, see L < http://doc.perl6.org/language/regexes#Adverbs >
945
945
946
946
= item say FILEHANDLE
@@ -950,7 +950,7 @@ details, see L<http://doc.perl6.org/language/regexes#Adverbs>
950
950
= item say
951
951
952
952
C < say > can be used as a function, defaulting to standard out. To use
953
- C < say > as a function with a filehndle I < instead > of standard out, you
953
+ C < say > as a function with a filehandle I < instead > of standard out, you
954
954
need to put a colon after the filehandle. I. e. C < say $fh: "Howdy!" > .
955
955
The use of the colon as an "invocant marker" here is discussed at
956
956
L < http://design.perl6.org/S03.html#line_4019 > . Alternately, you can use
@@ -1169,7 +1169,7 @@ C<study> is no more.
1169
1169
1170
1170
Unsurprisingly, we still have subroutines! You can have a signature in
1171
1171
your subroutine which allows you to specify arguments. Nevertheless, in
1172
- the absense of a signature (and only in the absence of a signature),
1172
+ the absence of a signature (and only in the absence of a signature),
1173
1173
C < @_ > still contains what is passed to the function. So, in theory, you
1174
1174
don't need to change that aspect of a function if porting from Perl 5 to
1175
1175
Perl 6 (although you should probably consider the option of using a
0 commit comments