diff options
author | Karl Williamson <khw@khw-desktop.(none)> | 2010-07-15 13:34:50 -0600 |
---|---|---|
committer | David Golden <dagolden@cpan.org> | 2010-07-17 21:50:48 -0400 |
commit | 8e4698ef1ed0da722532bfcc769ba22fe85c4b47 (patch) | |
tree | 0b55080e0574f5d376ea9c339574894feea77788 | |
parent | e54859e6420b46f93358493ae1650071cd354eee (diff) | |
download | perl-8e4698ef1ed0da722532bfcc769ba22fe85c4b47.tar.gz |
perlrebackslash: Nits
Signed-off-by: David Golden <dagolden@cpan.org>
-rw-r--r-- | pod/perlrebackslash.pod | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pod/perlrebackslash.pod b/pod/perlrebackslash.pod index c781601f73..9d246bdc2e 100644 --- a/pod/perlrebackslash.pod +++ b/pod/perlrebackslash.pod @@ -366,8 +366,8 @@ Either C<\gI<N>> (starting in Perl 5.10.0), or C<\I<N>> (old-style) where I<N> is a positive (unsigned) decimal number of any length is an absolute reference to a capturing group. -I<N> refers to the Nth set of parentheses - so C<\gI<N>> refers to whatever has -been matched by that set of parenthesis. Thus C<\g1> refers to the first +I<N> refers to the Nth set of parentheses, so C<\gI<N>> refers to whatever has +been matched by that set of parentheses. Thus C<\g1> refers to the first capture group in the regex. The C<\gI<N>> form can be equivalently written as C<\g{I<N>}> |