Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix unescaped ">" in C<>
  • Loading branch information
zoffixznet committed Sep 16, 2015
1 parent 23f2a08 commit 5d3eae7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/Language/5to6-perlop.pod
Expand Up @@ -42,8 +42,8 @@ L<5to6-perlfunc.pod>. Parentheses are still used for grouping.
As you typically will not be using references in Perl 6, the arrow is
probably less useful as a dereferencing operator. If you do need to
dereference something, however, the arrow is the dot. It is also the dot
for method calls. So, Perl 5's C<$arrayref->[7]> becomes
C<$arrayref.[7]> in Perl 6 and, similarly, C<$user->name> becomes
for method calls. So, Perl 5's C<< $arrayref->[7] >> becomes
C<$arrayref.[7]> in Perl 6 and, similarly, C<< $user->name >> becomes
C<$user.name>. The C<< => >> arrow is used for constructing Pairs, see
L<http://doc.perl6.org/language/terms#Pair>.
Expand Down

0 comments on commit 5d3eae7

Please sign in to comment.