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-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=54091fc36dc7efc7fe88612d4235c8691f555abf;p=p5sagit%2Fp5-mst-13.2.git 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.