summaryrefslogtreecommitdiff
path: root/pod/perlvar.pod
diff options
context:
space:
mode:
authorRafael Garcia-Suarez <rgarciasuarez@gmail.com>2005-08-24 07:28:27 +0000
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>2005-08-24 07:28:27 +0000
commit80dc6883dac79eac16d48a9478d1423a03bd4025 (patch)
tree31db4fc7d28d99b589d1c9d3d92f5d3c47dd5af2 /pod/perlvar.pod
parent5033177e14afc4ff4770aad028d4411eb71c1d7c (diff)
downloadperl-80dc6883dac79eac16d48a9478d1423a03bd4025.tar.gz
Unmatched parentheses (thanks to Steve Peters)
p4raw-id: //depot/perl@25324
Diffstat (limited to 'pod/perlvar.pod')
-rw-r--r--pod/perlvar.pod2
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perlvar.pod b/pod/perlvar.pod
index a820be1a81..b001378a62 100644
--- a/pod/perlvar.pod
+++ b/pod/perlvar.pod
@@ -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