perldiag: Add cat for ‘Attempt to set length of freed array’
authorFather Chrysostomos <sprout@cpan.org>
Wed, 27 Jun 2012 05:17:15 +0000 (22:17 -0700)
committerFather Chrysostomos <sprout@cpan.org>
Wed, 27 Jun 2012 07:52:49 +0000 (00:52 -0700)
pod/perldiag.pod

index 160d397..af9b87a 100644 (file)
@@ -345,9 +345,10 @@ L<perlvar/%INC>.
 
 =item Attempt to set length of freed array
 
-(W) You tried to set the length of an array which has been freed.  You
-can do this by storing a reference to the scalar representing the last index
-of an array and later assigning through that reference.  For example
+(W misc) You tried to set the length of an array which has
+been freed.  You can do this by storing a reference to the
+scalar representing the last index of an array and later
+assigning through that reference.  For example
 
     $r = do {my @a; \$#a};
     $$r = 503