diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2003-09-22 18:16:40 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2003-09-22 18:16:40 +0000 |
commit | b6c835310a005ce2e1187890772df402e7333876 (patch) | |
tree | e4a1e14c83a3441601b144dd7ce63b05e1114372 /pod/perldiag.pod | |
parent | c38b2de23cd38f4082b61dab277e518dbd2807a0 (diff) | |
download | perl-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.pod | 5 |
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); |