diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 2000-04-27 05:33:41 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 2000-04-27 05:33:41 +0000 |
commit | 106325ad18a7d364436c509de7040f7817bf07da (patch) | |
tree | 1b98b26f3b7625b6700faeb074a890825422b9ab /pod/perllexwarn.pod | |
parent | 7ca86468f50e48d16c4fd42ec5831ceb1a6368c3 (diff) | |
download | perl-106325ad18a7d364436c509de7040f7817bf07da.tar.gz |
doubled words in pods (from Simon Cozens
<simon.p.cozens@jp.pwcglobal.com>)
p4raw-id: //depot/perl@5959
Diffstat (limited to 'pod/perllexwarn.pod')
-rw-r--r-- | pod/perllexwarn.pod | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pod/perllexwarn.pod b/pod/perllexwarn.pod index cee1687537..0052d33ff2 100644 --- a/pod/perllexwarn.pod +++ b/pod/perllexwarn.pod @@ -9,7 +9,7 @@ flag B<-w> and the equivalent Perl variable, C<$^W>. The pragma works just like the existing "strict" pragma. This means that the scope of the warning pragma is limited to the -enclosing block. It also means that that the pragma setting will not +enclosing block. It also means that the pragma setting will not leak across files (via C<use>, C<require> or C<do>). This allows authors to independently define the degree of warning checks that will be applied to their module. @@ -195,7 +195,7 @@ or B<-X> command line flags. =back -The combined effect of 3 & 4 is that it will will allow code which uses +The combined effect of 3 & 4 is that it will allow code which uses the C<warnings> pragma to control the warning behavior of $^W-type code (using a C<local $^W=0>) if it really wants to, but not vice-versa. |