From: Rafael Garcia-Suarez Date: Mon, 19 Dec 2005 19:21:47 +0000 (+0000) Subject: Fix typo. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=dc57907a21286d1e3b2abfa220984a546c1f9488;p=p5sagit%2Fp5-mst-13.2.git Fix typo. Add empty lines after =items. p4raw-id: //depot/perl@26407 --- diff --git a/pod/perldiag.pod b/pod/perldiag.pod index 8b50bd3..1204117 100644 --- a/pod/perldiag.pod +++ b/pod/perldiag.pod @@ -491,11 +491,13 @@ to compress something else. See L. (F) Only hard references may be blessed. This is how Perl "enforces" encapsulation of objects. See L. -=item Can't "break" in a loop topicaizer +=item Can't "break" in a loop topicalizer + (F) You called C, but you're in a C block rather than a C block. You probably meant to use C or C. =item Can't "break" outside a given block + (F) You called C, but you're not inside a C block. =item Can't call method "%s" in empty package "%s" @@ -574,6 +576,7 @@ but then $foo no longer contains a glob. (typeglobs), can't be forced to stop being what they are. =item Can't "continue" outside a when block + (F) You called C, but you're not inside a C or C block. @@ -1156,6 +1159,7 @@ value that prints out looking like SCALAR(0xdecaf). Use the $1 form instead. =item Can't use "when" outside a topicalizer + (F) You have used a when() block that is neither inside a C loop nor a C block. (Note that this error is issued on exit from the C block, so you won't get the error if the match fails,