summaryrefslogtreecommitdiff
path: root/pod/perlreapi.pod
diff options
context:
space:
mode:
authorVincent Pit <perl@profvince.com>2008-02-23 13:04:43 +0100
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>2008-02-25 08:10:14 +0000
commit0a3a8dc0cd7227e83cd26fe236d1ad57c4add668 (patch)
tree93ea833cad3e0f2da490c1e6da862f50d4c947cf /pod/perlreapi.pod
parent14278b9c7901c0c5256db8ee3633d0f32ab6fa8e (diff)
downloadperl-0a3a8dc0cd7227e83cd26fe236d1ad57c4add668.tar.gz
Re: [PATCH] POD fixes
Message-ID: <47BFFDCB.60107@profvince.com> p4raw-id: //depot/perl@33366
Diffstat (limited to 'pod/perlreapi.pod')
-rw-r--r--pod/perlreapi.pod2
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perlreapi.pod b/pod/perlreapi.pod
index f8e9984341..b0d6275810 100644
--- a/pod/perlreapi.pod
+++ b/pod/perlreapi.pod
@@ -334,7 +334,7 @@ just die when assigned to in the default engine.
Get the C<length> of a capture variable. There's a special callback
for this so that perl doesn't have to do a FETCH and run C<length> on
the result, since the length is (in perl's case) known from an offset
-stored in C<<rx->offs> this is much more efficient:
+stored in C<< rx->offs >> this is much more efficient:
I32 s1 = rx->offs[paren].start;
I32 s2 = rx->offs[paren].end;