doc typo
Gurusamy Sarathy [Fri, 14 Jan 2000 01:17:15 +0000 (01:17 +0000)]
p4raw-id: //depot/perl@4799

pod/perlfunc.pod

index 90c1988..4e38db2 100644 (file)
@@ -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: