summaryrefslogtreecommitdiff
path: root/pod/perlvar.pod
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>2000-04-24 06:11:56 +0000
committerGurusamy Sarathy <gsar@cpan.org>2000-04-24 06:11:56 +0000
commit4375e838ae24b385ae79fa7b6918e613bedaaee6 (patch)
tree9418d63a58345f7e8f9e1ff644fa85c022b18650 /pod/perlvar.pod
parent94a371ee7128c99a38226de46cbec028ae3a990e (diff)
downloadperl-4375e838ae24b385ae79fa7b6918e613bedaaee6.tar.gz
various pod nits (from Larry Virden and others)
p4raw-id: //depot/perl@5917
Diffstat (limited to 'pod/perlvar.pod')
-rw-r--r--pod/perlvar.pod8
1 files changed, 4 insertions, 4 deletions
diff --git a/pod/perlvar.pod b/pod/perlvar.pod
index 04fb3fec96..8b025c5b72 100644
--- a/pod/perlvar.pod
+++ b/pod/perlvar.pod
@@ -439,17 +439,17 @@ After a match against some variable $var:
=over 5
-=item C<$`> is the same as C<substr($var, 0, $-[0]>)
+=item C<$`> is the same as C<substr($var, 0, $-[0])>
-=item C<$&> is the same as C<substr($var, $-[0], $+[0] - $-[0]>)
+=item C<$&> is the same as C<substr($var, $-[0], $+[0] - $-[0])>
-=item C<$'> is the same as C<substr($var, $+[0]>)
+=item C<$'> is the same as C<substr($var, $+[0])>
=item C<$1> is the same as C<substr($var, $-[1], $+[1] - $-[1])>
=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