summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDave Rolsky <autarch@urth.org>2012-12-17 15:31:26 -0600
committerDave Rolsky <autarch@urth.org>2012-12-18 15:58:31 -0600
commit3459a26e7c37af7fd4c309df215cf222d2d3de65 (patch)
treebbe193955a2304e1799f45b3b9f32705d4694474
parentc4e6fe899d1fec1e5d5e1b5f9310afee6e5baee7 (diff)
downloadperl-3459a26e7c37af7fd4c309df215cf222d2d3de65.tar.gz
Clarify hash assignment bug fix in list context
-rw-r--r--pod/perldelta.pod3
1 files changed, 2 insertions, 1 deletions
diff --git a/pod/perldelta.pod b/pod/perldelta.pod
index 3415403ed3..3f0edff78a 100644
--- a/pod/perldelta.pod
+++ b/pod/perldelta.pod
@@ -376,7 +376,8 @@ C<(%h) = ({})>, "Reference found where even-sized list expected".
=item -
-The return value of C<%h = (1, 1, 1)> in list context was wrong.
+The return value of C<%h = (1, 1, 1)> in list context was wrong. Previously
+this would return C<(1, undef, 1)>, not it returns C<(1, undef)>.
=item -