This is a live mirror of the Perl 5 development currently hosted at
https://github.com/perl/perl5
https://perl5.git.perl.org
/
perl5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
db6ae07
)
Pod formatting fix
author
Josh ben Jore
<jjore@cpan.org>
Tue, 29 Sep 2009 21:58:07 +0000
(14:58 -0700)
committer
Josh ben Jore
<jjore@cpan.org>
Tue, 29 Sep 2009 21:58:07 +0000
(14:58 -0700)
pod/perlop.pod
patch
|
blob
|
blame
|
history
diff --git
a/pod/perlop.pod
b/pod/perlop.pod
index
693c7c5
..
40ea2c8
100644
(file)
--- 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.