summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFather Chrysostomos <sprout@cpan.org>2011-12-30 21:30:41 -0800
committerFather Chrysostomos <sprout@cpan.org>2011-12-30 21:30:41 -0800
commit6ee63c28fd35fd5b54bc41ff032ec03ee10f4951 (patch)
tree94facf1887071568341c6a98c3296eac877eb7f6
parent6f1030080e86cb4625cc7373d7b607ee529f19ba (diff)
downloadperl-6ee63c28fd35fd5b54bc41ff032ec03ee10f4951.tar.gz
perldelta for deparsing "string"->[0]
-rw-r--r--pod/perldelta.pod6
1 files changed, 5 insertions, 1 deletions
diff --git a/pod/perldelta.pod b/pod/perldelta.pod
index cee972b6a5..8b18e3ae9c 100644
--- a/pod/perldelta.pod
+++ b/pod/perldelta.pod
@@ -105,10 +105,14 @@ XXX
L<B::Deparse> has been upgraded from version 1.10 to version 1.11.
-It now deparses open("random string") correctly. It used to omit the
+It now deparses C<open('random string')> correctly. It used to omit the
quotation marks, which did not work if the string were not a valid
identifier [perl #91416].
+A similar bug also affected hash and array elements such as
+C<< 'random string'->[0] >>, which would deparse as C<$random string[0]>.
+This has been fixed.
+
=item *
L<CGI> has been upgraded from version 3.58 to version 3.59.