summaryrefslogtreecommitdiff
path: root/pod/perlre.pod
diff options
context:
space:
mode:
authorAaron Crane <arc@cpan.org>2014-07-05 01:53:57 +0100
committerAaron Crane <arc@cpan.org>2014-07-05 01:53:57 +0100
commit22dc67195d1219cb0c80b695155d55bcfafa1551 (patch)
treeb3fd2bb883cfd89ad54e130810d58d3550c090b5 /pod/perlre.pod
parent2cc5c789bc534d97c91560f0dfc3d9cba5874437 (diff)
downloadperl-22dc67195d1219cb0c80b695155d55bcfafa1551.tar.gz
pod/perlre.pod: fix typo in example code
Diffstat (limited to 'pod/perlre.pod')
-rw-r--r--pod/perlre.pod2
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perlre.pod b/pod/perlre.pod
index 1ceff9e379..bf439aef85 100644
--- 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>....)
+ (?<ADDRESS_PAT>....)
)/x
Note that capture groups matched inside of recursion are not accessible