In perl.git, the branch blead has been updated <http://perl5.git.perl.org/perl.git/commitdiff/a15b7957181646517d8622bc416574e4627c2ec3?hp=db6ae0723f177b693bb39f2b9971a902b53a48c2>
- Log ----------------------------------------------------------------- commit a15b7957181646517d8622bc416574e4627c2ec3 Author: Josh ben Jore <[email protected]> Date: Tue Sep 29 14:58:07 2009 -0700 Pod formatting fix ----------------------------------------------------------------------- Summary of changes: pod/perlop.pod | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/pod/perlop.pod b/pod/perlop.pod index 693c7c5..40ea2c8 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. -- Perl5 Master Repository
