summaryrefslogtreecommitdiff
path: root/pod/perlop.pod
diff options
context:
space:
mode:
authorJosh ben Jore <jjore@cpan.org>2009-09-29 14:58:07 -0700
committerJosh ben Jore <jjore@cpan.org>2009-09-29 14:58:07 -0700
commita15b7957181646517d8622bc416574e4627c2ec3 (patch)
tree2abfaae954fed8cefda765f10b411cede83a7587 /pod/perlop.pod
parentdb6ae0723f177b693bb39f2b9971a902b53a48c2 (diff)
downloadperl-a15b7957181646517d8622bc416574e4627c2ec3.tar.gz
Pod formatting fix
Diffstat (limited to 'pod/perlop.pod')
-rw-r--r--pod/perlop.pod2
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perlop.pod b/pod/perlop.pod
index 693c7c5a3d..40ea2c8e9c 100644
--- a/pod/perlop.pod
+++ b/pod/perlop.pod
@@ -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.