Pod formatting fix
Roberto C. S�nchez [Tue, 29 Sep 2009 21:54:08 +0000 (14:54 -0700)]
Signed-off-by: Josh ben Jore <jjore@cpan.org>

pod/perlop.pod

index b2f5113..693c7c5 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, C<< <I<filehandle>> >> 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.