summaryrefslogtreecommitdiff
path: root/pod/perldiag.pod
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2003-09-22 18:16:40 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2003-09-22 18:16:40 +0000
commitb6c835310a005ce2e1187890772df402e7333876 (patch)
treee4a1e14c83a3441601b144dd7ce63b05e1114372 /pod/perldiag.pod
parentc38b2de23cd38f4082b61dab277e518dbd2807a0 (diff)
downloadperl-b6c835310a005ce2e1187890772df402e7333876.tar.gz
An error message need not be a novel.
p4raw-id: //depot/perl@21319
Diffstat (limited to 'pod/perldiag.pod')
-rw-r--r--pod/perldiag.pod5
1 files changed, 3 insertions, 2 deletions
diff --git a/pod/perldiag.pod b/pod/perldiag.pod
index 37878ffc5a..e445d08060 100644
--- a/pod/perldiag.pod
+++ b/pod/perldiag.pod
@@ -4191,9 +4191,10 @@ modifier is not presently meaningful in substitutions.
use the /g modifier. Currently, /c is meaningful only when /g is
used. (This may change in the future.)
-=item Use of freed value in iteration (perhaps you modified the iterated array within the loop?)
+=item Use of freed value in iteration
-(F) This is typically caused by code like the following:
+(F) Perhaps you modified the iterated array within the loop?
+This error is typically caused by code like the following:
@a = (3,4);
@a = () for (1,2,@a);