From: Moritz Lenz Date: Thu, 19 Nov 2009 14:32:19 +0000 (+0100) Subject: Clarify docs for implicit "next" on all "when" blocks X-Git-Tag: v5.11.3~148^2~62^2~4 X-Git-Url: https://perl5.git.perl.org/perl5.git/commitdiff_plain/54091fc36dc7efc7fe88612d4235c8691f555abf Clarify docs for implicit "next" on all "when" blocks --- diff --git a/pod/perlsyn.pod b/pod/perlsyn.pod index d5fc4a7..4e1bc0a 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 block, there is an implicit C. +At the end of all C blocks, there is an implicit C. You can override that with an explicit C if you're only interested in the first match.