summaryrefslogtreecommitdiff
path: root/regen/warnings.pl
diff options
context:
space:
mode:
authorPete Houston <githubdevteam@openstrike.co.uk>2021-11-15 14:56:41 +0000
committerJames E Keenan <jkeenan@cpan.org>2021-11-18 12:30:12 +0000
commit5624cfff8f02788563881f4892a4681a2dd7c308 (patch)
tree3a68e7ac774c4b75e035ab04ed656d7215440690 /regen/warnings.pl
parenta0f0c1762ef2dabc114852f774a3e4c27037f499 (diff)
downloadperl-5624cfff8f02788563881f4892a4681a2dd7c308.tar.gz
POD breakage in lib/warnings.pm
An unescaped right angle bracket was resulting in a malformed code snippet in warnings.pm This tiny PR escapes that character and thus fixes the rendering. regen/warnings.pl corrected and regenerated; version bumped. Pete Houston is now a Perl Author. For: https://github.com/Perl/perl5/pull/19228
Diffstat (limited to 'regen/warnings.pl')
-rw-r--r--regen/warnings.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/regen/warnings.pl b/regen/warnings.pl
index da340fa271..201af9e71c 100644
--- a/regen/warnings.pl
+++ b/regen/warnings.pl
@@ -16,7 +16,7 @@
#
# This script is normally invoked from regen.pl.
-$VERSION = '1.55';
+$VERSION = '1.56';
BEGIN {
require './regen/regen_lib.pl';
@@ -1289,7 +1289,7 @@ use:
use warnings 'FATAL'; # short form of "use warnings FATAL => 'all';"
However, you should still heed the guidance earlier in this section against
-using C<use warnings FATAL => 'all';>.
+using C<< 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