diff options
author | Karl Williamson <public@khwilliamson.com> | 2012-03-04 12:33:03 -0700 |
---|---|---|
committer | Karl Williamson <public@khwilliamson.com> | 2012-03-06 09:17:52 -0700 |
commit | 1dc2b704631c7fdc4c58e877c2f17811dc72bc6f (patch) | |
tree | 69d86826bda0fa294ed6d5d47d96914de96a98ea | |
parent | 77649ca9d82a2e8cc65a4fcc0db2c41ca4daa6ce (diff) | |
download | perl-1dc2b704631c7fdc4c58e877c2f17811dc72bc6f.tar.gz |
perllexwarn: Fix typos
-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 accbfdf792..e63135915b 100644 --- a/pod/perllexwarn.pod +++ b/pod/perllexwarn.pod @@ -158,7 +158,7 @@ Does the exact opposite to the B<-W> flag, i.e. it disables all warnings. =head2 Backward Compatibility -If you are used with working with a version of Perl prior to the +If you are used to working with a version of Perl prior to the introduction of lexically scoped warnings, or have code that uses both lexical warnings and C<$^W>, this section will describe how they interact. @@ -169,7 +169,7 @@ How Lexical Warnings interact with B<-w>/C<$^W>: =item 1. If none of the three command line flags (B<-w>, B<-W> or B<-X>) that -control warnings is used and neither C<$^W> or the C<warnings> pragma +control warnings is used and neither C<$^W> nor the C<warnings> pragma are used, then default warnings will be enabled and optional warnings disabled. This means that legacy code that doesn't attempt to control the warnings |