This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Unmatched parentheses (thanks to Steve Peters)
authorRafael Garcia-Suarez <rgarciasuarez@gmail.com>
Wed, 24 Aug 2005 07:28:27 +0000 (07:28 +0000)
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>
Wed, 24 Aug 2005 07:28:27 +0000 (07:28 +0000)
p4raw-id: //depot/perl@25324

pod/perlvar.pod

index a820be1..b001378 100644 (file)
@@ -544,7 +544,7 @@ After a match against some variable $var:
 
 =item C<$2> is the same as C<substr($var, $-[2], $+[2] - $-[2])>
 
-=item C<$3> is the same as C<substr $var, $-[3], $+[3] - $-[3])>
+=item C<$3> is the same as C<substr($var, $-[3], $+[3] - $-[3])>
 
 =back