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 (from parent 1:
b18b5ff
)
typo in perlre.pod
author
Father Chrysostomos
<sprout@cpan.org>
Sun, 27 Nov 2011 19:07:44 +0000
(11:07 -0800)
committer
Father Chrysostomos
<sprout@cpan.org>
Sun, 27 Nov 2011 19:07:44 +0000
(11:07 -0800)
pod/perlre.pod
patch
|
blob
|
blame
|
history
diff --git
a/pod/perlre.pod
b/pod/perlre.pod
index
9598263
..
981f931
100644
(file)
--- a/
pod/perlre.pod
+++ b/
pod/perlre.pod
@@
-1330,7
+1330,7
@@
that the contents of capture groups defined inside an eval'ed pattern
are not available outside of the pattern, and vice versa, there is no
way for the inner pattern returned from the code block to refer to a
capture group defined outside. (The code block itself can use C<$1>, etc.,
are not available outside of the pattern, and vice versa, there is no
way for the inner pattern returned from the code block to refer to a
capture group defined outside. (The code block itself can use C<$1>, etc.,
-to refer to the enclosing patterns capture groups.) Thus,
+to refer to the enclosing pattern
'
s capture groups.) Thus,
('a' x 100)=~/(??{'(.)' x 100})/
('a' x 100)=~/(??{'(.)' x 100})/