From: Rafael Garcia-Suarez Date: Wed, 18 Mar 2009 08:18:58 +0000 (+0100) Subject: Fix typo in English name of $& X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=6210e03fb1e3d8a3e81d83ab75e0db0d050fc703;p=p5sagit%2Fp5-mst-13.2.git Fix typo in English name of $& --- diff --git a/pod/perlvar.pod b/pod/perlvar.pod index 9be3bc1..914eebe 100644 --- a/pod/perlvar.pod +++ b/pod/perlvar.pod @@ -241,7 +241,7 @@ See L for a replacement. =item ${^MATCH} X<${^MATCH}> -This is similar to C<$&> (C<$POSTMATCH>) except that it does not incur the +This is similar to C<$&> (C<$MATCH>) except that it does not incur the performance penalty associated with that variable, and is only guaranteed to return a defined value when the pattern was compiled or executed with the C

modifier.