Skip to content

Commit 0c182c1

Browse files
committed
Hide long link behind its description.
Remove the 'new' feature for postfix dereferencing, since it is no more as much 'new' as it was.
1 parent 474dca2 commit 0c182c1

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

doc/Language/5to6-nutshell.pod6

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -533,10 +533,10 @@ we now use the dot operator C<.> for those tasks.
533533
say $hashref.{'fire bad'};
534534
say $subref.($foo, $bar);
535535
536-
In recent versions of Perl 5 (5.20 and later), a new feature allows the use of the arrow op
537-
for dereferencing. See
538-
L<http://search.cpan.org/~shay/perl-5.20.1/pod/perl5200delta.pod#Experimental_Postfix_Dereferencing>
539-
That new feature corresponds Perl 6 C<.list> and C<.hash> methods:
536+
In recent versions of Perl 5 (5.20 and later), a new feature allows the use of the arrow
537+
operator for dereferencing: see
538+
L<Postfix Dereferencing|http://search.cpan.org/~shay/perl-5.20.1/pod/perl5200delta.pod#Experimental_Postfix_Dereferencing>
539+
Such feature corresponds to Perl 6 C<.list> and C<.hash> methods:
540540
541541
=for code :lang<perl5>
542542
# Perl 5.20

0 commit comments

Comments
 (0)