Skip to content

Commit bb1f78d

Browse files
committed
Merge branch 'master' of https://github.com/perl6/doc
2 parents 36239c9 + 0cec370 commit bb1f78d

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

lib/Language/5to6-perlfunc.pod

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -778,7 +778,7 @@ Regular expression syntax is somewhat different in Perl 6, but the match
778778
operator still exists. If you're trying to rewrite some Perl 5 code, the
779779
most important difference is that C<=~> is replaced by the smart match
780780
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
782782
L<http://doc.perl6.org/language/regexes#Adverbs>
783783
784784
=head2 map
@@ -1112,7 +1112,7 @@ currently exist...
11121112
11131113
=item rename OLDNAME,NEWNAME
11141114
1115-
Still avialable in Perl 6.
1115+
Still available in Perl 6.
11161116
11171117
=head2 requires
11181118
@@ -1172,7 +1172,7 @@ Regular expression syntax is somewhat different in Perl 6, but the
11721172
substitution operator exists. If you're trying to rewrite some
11731173
Perl 5 code, the most important difference is that C<=~> is replaced
11741174
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
11761176
details, see L<http://doc.perl6.org/language/regexes#Adverbs>
11771177
11781178
=head2 say
@@ -1184,7 +1184,7 @@ details, see L<http://doc.perl6.org/language/regexes#Adverbs>
11841184
=item say
11851185
11861186
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
11881188
need to put a colon after the filehandle. I. e. C<say $fh: "Howdy!">.
11891189
The use of the colon as an "invocant marker" here is discussed at
11901190
L<http://design.perl6.org/S03.html#line_4019>. Alternately, you can use
@@ -1453,7 +1453,7 @@ C<study> is no more.
14531453
14541454
Unsurprisingly, we still have subroutines! You can have a signature in
14551455
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),
14571457
C<@_> still contains what is passed to the function. So, in theory, you
14581458
don't need to change that aspect of a function if porting from Perl 5 to
14591459
Perl 6 (although you should probably consider the option of using a

lib/Language/5to6-perlop.pod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ These all work as in Perl 5.
122122
123123
C<==> and C<!=> both work as in Perl 5.
124124
125-
C<< <=> >> and C<cmp> have differnt behavior in Perl 6. C<< <=> >> does
125+
C<< <=> >> and C<cmp> have different behavior in Perl 6. C<< <=> >> does
126126
a numeric comparison, but returns <Order::Less>, <Order::Same>, or
127127
<Order::More> instead of Perl 5's C<-1>, C<0>, or C<1>. To get the Perl
128128
5 behavior (with the change that it returns the C<Order> objects, rather

0 commit comments

Comments
 (0)