From 799513fc301dd620575c9fed7c299955a6503929 Mon Sep 17 00:00:00 2001 From: Graham Knop Date: Wed, 14 May 2025 00:39:45 +0200 Subject: [PATCH] fix mismatched quotes in re.pm --- ext/re/re.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ext/re/re.pm b/ext/re/re.pm index 78cdf5d60736..398a270ab1be 100644 --- a/ext/re/re.pm +++ b/ext/re/re.pm @@ -4,7 +4,7 @@ package re; use strict; use warnings; -our $VERSION = "0.47"; +our $VERSION = "0.48"; our @ISA = qw(Exporter); our @EXPORT_OK = qw{ is_regexp regexp_pattern @@ -409,7 +409,7 @@ things, which may be legal, but have a reasonable possibility of not being the programmer's actual intent. This automatically turns on the C<"regexp"> warnings category (if not already on) within its scope. -As an example of something that is caught under C<"strict'>, but not +As an example of something that is caught under C<'strict'>, but not otherwise, is the pattern qr/\xABC/