From: Gurusamy Sarathy Date: Fri, 14 Jan 2000 01:17:15 +0000 (+0000) Subject: doc typo X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=9740c8380c47f3138ea60459cef1e748515e656d;p=p5sagit%2Fp5-mst-13.2.git doc typo p4raw-id: //depot/perl@4799 --- diff --git a/pod/perlfunc.pod b/pod/perlfunc.pod index 90c1988..4e38db2 100644 --- a/pod/perlfunc.pod +++ b/pod/perlfunc.pod @@ -953,7 +953,7 @@ And so do these: delete @HASH{keys %HASH}; - delete @ARRAY{0 .. $#ARRAY}; + delete @ARRAY[0 .. $#ARRAY]; But both of these are slower than just assigning the empty list or undefining %HASH or @ARRAY: