Fix typo.
Rafael Garcia-Suarez [Mon, 19 Dec 2005 19:21:47 +0000 (19:21 +0000)]
Add empty lines after =items.

p4raw-id: //depot/perl@26407

pod/perldiag.pod

index 8b50bd3..1204117 100644 (file)
@@ -491,11 +491,13 @@ to compress something else.  See L<perlfunc/pack>.
 (F) Only hard references may be blessed.  This is how Perl "enforces"
 encapsulation of objects.  See L<perlobj>.
 
-=item Can't "break" in a loop topicaizer
+=item Can't "break" in a loop topicalizer
+
 (F) You called C<break>, but you're in a C<foreach> block rather than
 a C<given> block. You probably meant to use C<next> or C<last>.
 
 =item Can't "break" outside a given block
+
 (F) You called C<break>, but you're not inside a C<given> 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<continue>, but you're not inside a C<when>
 or C<default> 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<foreach>
 loop nor a C<given> block. (Note that this error is issued on exit
 from the C<when> block, so you won't get the error if the match fails,