This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
perlop: m?? requires the m in v5.22, not v5.24
authorRicardo Signes <rjbs@cpan.org>
Wed, 28 Jan 2015 13:08:29 +0000 (08:08 -0500)
committerRicardo Signes <rjbs@cpan.org>
Wed, 28 Jan 2015 13:09:36 +0000 (08:09 -0500)
pod/perlop.pod

index 6c7d3b1..c278d81 100644 (file)
@@ -2007,7 +2007,7 @@ The match-once behavior is controlled by the match delimiter being
 C<?>; with any other delimiter this is the normal C<m//> operator.
 
 In the past, the leading C<m> in C<m?PATTERN?> was optional, but was
-long deprecated.  As of v5.24.0, it is a syntax error.  If you
+long deprecated.  As of v5.22.0, it is a syntax error.  If you
 encounter this construct in older code, you can just add C<m>.
 
 =item s/PATTERN/REPLACEMENT/msixpodualngcer