Clarify hash assignment bug fix in list context
authorDave Rolsky <autarch@urth.org>
Mon, 17 Dec 2012 21:31:26 +0000 (15:31 -0600)
committerDave Rolsky <autarch@urth.org>
Tue, 18 Dec 2012 21:58:31 +0000 (15:58 -0600)
pod/perldelta.pod

index 3415403..3f0edff 100644 (file)
@@ -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 -