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:
07abd19
)
fix typo - s/was/what/ is to be ignored
author
Mike Giroux
<rmgiroux@acm.org>
Sat, 21 Mar 2009 10:33:18 +0000
(06:33 -0400)
committer
Vincent Pit
<perl@profvince.com>
Sat, 21 Mar 2009 16:17:20 +0000
(17:17 +0100)
pod/perlretut.pod
patch
|
blob
|
blame
|
history
diff --git
a/pod/perlretut.pod
b/pod/perlretut.pod
index
0a2d563
..
a43bea1
100644
(file)
--- a/
pod/perlretut.pod
+++ b/
pod/perlretut.pod
@@
-2422,7
+2422,7
@@
palindrome in between.
/(?: (\w) (?...Here be a palindrome...) \{-1} | \w? )/x
-Adding C<\W*> at either end to eliminate w
as
is to be ignored, we already
+Adding C<\W*> at either end to eliminate w
hat
is to be ignored, we already
have the full pattern:
my $pp = qr/^(\W* (?: (\w) (?1) \g{-1} | \w? ) \W*)$/ix;