summaryrefslogtreecommitdiff
path: root/pod/perllexwarn.pod
diff options
context:
space:
mode:
authorKarl Williamson <public@khwilliamson.com>2014-01-22 11:40:52 -0700
committerKarl Williamson <public@khwilliamson.com>2014-01-22 11:46:00 -0700
commitb2818f92b8cc4751b2ad6be60cd7fcb962cae6e4 (patch)
tree83ad5272862a91ffa31adff533fdba02e50ed56b /pod/perllexwarn.pod
parent1d2ab94637beb9b91e390fa84ad0ad717cbc7163 (diff)
downloadperl-b2818f92b8cc4751b2ad6be60cd7fcb962cae6e4.tar.gz
perllexwarn: Fit verbatim lines in 79 columns
Diffstat (limited to 'pod/perllexwarn.pod')
-rw-r--r--pod/perllexwarn.pod4
1 files changed, 2 insertions, 2 deletions
diff --git a/pod/perllexwarn.pod b/pod/perllexwarn.pod
index b4fed79ca1..229a357997 100644
--- a/pod/perllexwarn.pod
+++ b/pod/perllexwarn.pod
@@ -408,8 +408,8 @@ except for those in the "syntax" category.
As of Perl 5.20, instead of C<< use warnings FATAL => 'all'; >> you can
use:
- use v5.20; # Perl 5.20 or greater is required for the following
- use warnings 'FATAL'; # short form of "use warnings FATAL => 'all';"
+ use v5.20; # Perl 5.20 or greater is required for the following
+ use warnings 'FATAL'; # short form of "use warnings FATAL => 'all';"
If you want your program to be compatible with versions of Perl before
5.20, you must use C<< use warnings FATAL => 'all'; >> instead. (In