summaryrefslogtreecommitdiff
path: root/pod/perldata.pod
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>1998-11-28 17:59:16 +0000
committerGurusamy Sarathy <gsar@cpan.org>1998-11-28 17:59:16 +0000
commitfeedc0d759c6e3484d4157deb199c3b45a32e672 (patch)
treed243a16e7b2d167affeb00340b1f8b1beb33f8fc /pod/perldata.pod
parent8a0597442b89a0a3330c57701574531c2f5c7b15 (diff)
downloadperl-feedc0d759c6e3484d4157deb199c3b45a32e672.tar.gz
s/Array/List/ suggested by John Tobey
p4raw-id: //depot/perl@2360
Diffstat (limited to 'pod/perldata.pod')
-rw-r--r--pod/perldata.pod2
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perldata.pod b/pod/perldata.pod
index 58c11234b4..8f700f634c 100644
--- a/pod/perldata.pod
+++ b/pod/perldata.pod
@@ -471,7 +471,7 @@ is legal to assign to:
($map{'red'}, $map{'blue'}, $map{'green'}) = (0x00f, 0x0f0, 0xf00);
-Array assignment in a scalar context returns the number of elements
+List assignment in a scalar context returns the number of elements
produced by the expression on the right side of the assignment:
$x = (($foo,$bar) = (3,2,1)); # set $x to 3, not 2