diff options
Diffstat (limited to 'pod/perlop.pod')
-rw-r--r-- | pod/perlop.pod | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pod/perlop.pod b/pod/perlop.pod index 40ea2c8e9c..028c808160 100644 --- a/pod/perlop.pod +++ b/pod/perlop.pod @@ -2183,8 +2183,8 @@ 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 -explicit C<defined> test or comparison elicit a warning if the +In other boolean contexts, C<< <filehandle> >> without an +explicit C<defined> test or comparison elicits a warning if the C<use warnings> pragma or the B<-w> command-line switch (the C<$^W> variable) is in effect. |