From: Mike Giroux Date: Sat, 21 Mar 2009 10:33:18 +0000 (-0400) Subject: fix typo - s/was/what/ is to be ignored X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=e57a4e52f25776b06acd158045c40d30b3b51bd3;p=p5sagit%2Fp5-mst-13.2.git fix typo - s/was/what/ is to be ignored --- diff --git a/pod/perlretut.pod b/pod/perlretut.pod index 0a2d563..a43bea1 100644 --- 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 was is to be ignored, we already +Adding C<\W*> at either end to eliminate what is to be ignored, we already have the full pattern: my $pp = qr/^(\W* (?: (\w) (?1) \g{-1} | \w? ) \W*)$/ix;