diff options
Diffstat (limited to 'ext')
-rw-r--r-- | ext/re/re.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/re/re.pm b/ext/re/re.pm index 84b701154d..6e9e9b0f29 100644 --- a/ext/re/re.pm +++ b/ext/re/re.pm @@ -4,7 +4,7 @@ package re; use strict; use warnings; -our $VERSION = "0.23"; +our $VERSION = "0.24"; our @ISA = qw(Exporter); our @EXPORT_OK = ('regmust', qw(is_regexp regexp_pattern @@ -570,7 +570,7 @@ results in Because the C<here> is before the C<.*> in the pattern, its position can be determined exactly. That's not true, however, for the C<there>; it could appear at any point after where the anchored string appeared. -Perl uses both for its optimisations, prefering the longer, or, if they are +Perl uses both for its optimisations, preferring the longer, or, if they are equal, the floating. B<NOTE:> This may not necessarily be the definitive longest anchored and |