From: Gurusamy Sarathy <gsar@cpan.org>
Date: Sat, 28 Nov 1998 17:59:16 +0000 (+0000)
Subject: s/Array/List/ suggested by John Tobey
X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=feedc0d759c6e3484d4157deb199c3b45a32e672;p=p5sagit%2Fp5-mst-13.2.git

s/Array/List/ suggested by John Tobey

p4raw-id: //depot/perl@2360
---

diff --git a/pod/perldata.pod b/pod/perldata.pod
index 58c1123..8f700f6 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