perlrebackslash: Nits
authorKarl Williamson <khw@khw-desktop.(none)>
Thu, 15 Jul 2010 19:34:50 +0000 (13:34 -0600)
committerDavid Golden <dagolden@cpan.org>
Sun, 18 Jul 2010 01:50:48 +0000 (21:50 -0400)
Signed-off-by: David Golden <dagolden@cpan.org>
pod/perlrebackslash.pod

index c781601..9d246bd 100644 (file)
@@ -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>}>