summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChip Salzenberg <chip@perl.com>1997-05-01 01:57:56 +1200
committerChip Salzenberg <chip@atlantic.net>1997-05-01 00:00:00 +1200
commit3e07908ea1eeba49c73de370640833193accfd6e (patch)
tree61be706ed5585e763bed45cdeed6a907a0b05b24
parent0146554f605695de389f3b8c36a7b3b994325cb4 (diff)
downloadperl-3e07908ea1eeba49c73de370640833193accfd6e.tar.gz
Fix typo in perldelta
-rw-r--r--pod/perldelta.pod10
1 files changed, 5 insertions, 5 deletions
diff --git a/pod/perldelta.pod b/pod/perldelta.pod
index 48c04b3294..9574872791 100644
--- a/pod/perldelta.pod
+++ b/pod/perldelta.pod
@@ -201,11 +201,11 @@ A subroutine reference may now be suffixed with an arrow and a
(possibly empty) parameter list. This syntax denotes a call of the
referenced subroutine, with the given parameters (if any).
-This new syntax follows the pattern of C<$hashref-E<gt>{FOO}> and
-C<$aryref-E<gt>[$foo]>; now, C<&$subref($foo)> may now be written
-C<$subref-E<gt>($foo)>. All of these arrow terms may be chained;
-thus, C<&{$table-E<gt>{FOO}}($bar)> may now be written
-C<$table-E<gt>{FOO}->($bar)>.
+This new syntax follows the pattern of S<C<$hashref-E<gt>{FOO}>> and
+S<C<$aryref-E<gt>[$foo]>>: You may now write S<C<&$subref($foo)>> as
+S<C<$subref-E<gt>($foo)>>. All of these arrow terms may be chained;
+thus, S<C<&{$table-E<gt>{FOO}}($bar)>> may now be written
+S<C<$table-E<gt>{FOO}-E<gt>($bar)>>.
=back