This is a live mirror of the Perl 5 development currently hosted at
https://github.com/perl/perl5
https://perl5.git.perl.org
/
perl5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2cc5c78
)
pod/perlre.pod: fix typo in example code
author
Aaron Crane
<arc@cpan.org>
Sat, 5 Jul 2014 00:53:57 +0000
(
01:53
+0100)
committer
Aaron Crane
<arc@cpan.org>
Sat, 5 Jul 2014 00:53:57 +0000
(
01:53
+0100)
pod/perlre.pod
patch
|
blob
|
blame
|
history
diff --git
a/pod/perlre.pod
b/pod/perlre.pod
index
1ceff9e
..
bf439ae
100644
(file)
--- a/
pod/perlre.pod
+++ b/
pod/perlre.pod
@@
-1684,7
+1684,7
@@
An example of how this might be used is as follows:
/(?<NAME>(?&NAME_PAT))(?<ADDR>(?&ADDRESS_PAT))
(?(DEFINE)
(?<NAME_PAT>....)
- (?<ADRESS_PAT>....)
+ (?<AD
D
RESS_PAT>....)
)/x
Note that capture groups matched inside of recursion are not accessible