This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
typo fix for reguts pod
authorDavid Steinbrunner <dsteinbrunner@pobox.com>
Tue, 21 May 2013 11:40:05 +0000 (07:40 -0400)
committerJames E Keenan <jkeenan@cpan.org>
Sat, 25 May 2013 13:50:33 +0000 (15:50 +0200)
pod/perlreguts.pod

index bb7f372..7158ca1 100644 (file)
@@ -396,7 +396,7 @@ routines return a pointer to a C<regnode>, which is usually the last regnode
 added to the program. However, one complication is that reg() returns NULL
 for parsing C<(?:)> syntax for embedded modifiers, setting the flag
 C<TRYAGAIN>. The C<TRYAGAIN> propagates upwards until it is captured, in
-some cases by by C<regatom()>, but otherwise unconditionally by
+some cases by C<regatom()>, but otherwise unconditionally by
 C<regbranch()>. Hence it will never be returned by C<regbranch()> to
 C<reg()>. This flag permits patterns such as C<(?i)+> to be detected as
 errors (I<Quantifier follows nothing in regex; marked by <-- HERE in m/(?i)+