diff options
author | Moritz Lenz <moritz@faui2k3.org> | 2009-11-19 15:32:19 +0100 |
---|---|---|
committer | David Golden <dagolden@cpan.org> | 2009-11-20 06:37:20 -0500 |
commit | 54091fc36dc7efc7fe88612d4235c8691f555abf (patch) | |
tree | af90be408b40395325b3a8af4537fce3c71a9f08 /pod | |
parent | 20381b504d5d07ea910daed28e4f149e5e1a26d7 (diff) | |
download | perl-54091fc36dc7efc7fe88612d4235c8691f555abf.tar.gz |
Clarify docs for implicit "next" on all "when" blocks
Diffstat (limited to 'pod')
-rw-r--r-- | pod/perlsyn.pod | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perlsyn.pod b/pod/perlsyn.pod index d5fc4a72c1..4e1bc0a8a7 100644 --- a/pod/perlsyn.pod +++ b/pod/perlsyn.pod @@ -679,7 +679,7 @@ string occurs in an array: } print "\@array contains $count copies of 'foo'\n"; -On exit from the C<when> block, there is an implicit C<next>. +At the end of all C<when> blocks, there is an implicit C<next>. You can override that with an explicit C<last> if you're only interested in the first match. |