Pod formatting fix
Josh ben Jore [Tue, 29 Sep 2009 21:58:07 +0000 (14:58 -0700)]
pod/perlop.pod

index 693c7c5..40ea2c8 100644 (file)
@@ -2183,7 +2183,7 @@ to terminate the loop, they should be tested for explicitly:
     while (($_ = <STDIN>) ne '0') { ... }
     while (<STDIN>) { last unless $_; ... }
 
-In other boolean contexts, I< C< E<lt>filehandleE<gt> > > without an
+In other boolean contexts, I<C<E<lt>filehandleE<gt>>> without an
 explicit C<defined> test or comparison elicit a warning if the
 C<use warnings> pragma or the B<-w>
 command-line switch (the C<$^W> variable) is in effect.