s/Array/List/ suggested by John Tobey
Gurusamy Sarathy [Sat, 28 Nov 1998 17:59:16 +0000 (17:59 +0000)]
p4raw-id: //depot/perl@2360

pod/perldata.pod

index 58c1123..8f700f6 100644 (file)
@@ -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