summaryrefslogtreecommitdiff
path: root/pod
diff options
context:
space:
mode:
authorSteve Hay <steve.m.hay@googlemail.com>2012-08-20 11:08:48 +0100
committerSteve Hay <steve.m.hay@googlemail.com>2012-08-20 11:08:48 +0100
commit125408e125aa91af73358eb4a4d195ec30b1a615 (patch)
treecb3b51305e2e85a0f7c018d0096e998ad4c620e9 /pod
parent0b7399e1b614f5542d98214516ac2212838d5a7c (diff)
downloadperl-125408e125aa91af73358eb4a4d195ec30b1a615.tar.gz
perldelta - Fix unescaped <>
Diffstat (limited to 'pod')
-rw-r--r--pod/perldelta.pod7
1 files changed, 4 insertions, 3 deletions
diff --git a/pod/perldelta.pod b/pod/perldelta.pod
index 88a29dabc8..8e7e4a4f1a 100644
--- a/pod/perldelta.pod
+++ b/pod/perldelta.pod
@@ -415,9 +415,10 @@ Formats and C<use> statements are now permitted inside formats.
=item *
-C<print $x> and C<sub { print $x }->()> now always produce the same output. It
-was possible for the latter to refuse to close over $x if the variable was not
-active; e.g., if it was defined outside a currently-running named subroutine.
+C<print $x> and C<sub { print $x }-E<gt>()> now always produce the same output.
+It was possible for the latter to refuse to close over $x if the variable was
+not active; e.g., if it was defined outside a currently-running named
+subroutine.
=item *