diff options
author | Apocalypse <perl@0ne.us> | 2011-02-15 18:38:04 -0700 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2011-02-15 20:25:25 -0800 |
commit | 96090e4f0acf1d24051c680595b4740bd24cb69a (patch) | |
tree | 2018450c5cbec81deb0268f3d899e03534c797b9 /pod/perlre.pod | |
parent | c05760c68edc298aadab73da2781ba0fe1cf24b6 (diff) | |
download | perl-96090e4f0acf1d24051c680595b4740bd24cb69a.tar.gz |
Fix bad pod links found by Test::Pod::LinkCheck
Diffstat (limited to 'pod/perlre.pod')
-rw-r--r-- | pod/perlre.pod | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pod/perlre.pod b/pod/perlre.pod index 0175fbe023..56e42f8088 100644 --- a/pod/perlre.pod +++ b/pod/perlre.pod @@ -1840,12 +1840,12 @@ match takes a long time to finish. A powerful tool for optimizing such beasts is what is known as an "independent group", -which does not backtrack (see L<C<< (?>pattern) >>>). Note also that +which does not backtrack (see L</C<< (?>pattern) >>>). Note also that zero-length look-ahead/look-behind assertions will not backtrack to make the tail match, since they are in "logical" context: only whether they match is considered relevant. For an example where side-effects of look-ahead I<might> have influenced the -following match, see L<C<< (?>pattern) >>>. +following match, see L</C<< (?>pattern) >>>. =head2 Version 8 Regular Expressions X<regular expression, version 8> X<regex, version 8> X<regexp, version 8> |