This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
fix typo - s/was/what/ is to be ignored
authorMike Giroux <rmgiroux@acm.org>
Sat, 21 Mar 2009 10:33:18 +0000 (06:33 -0400)
committerVincent Pit <perl@profvince.com>
Sat, 21 Mar 2009 16:17:20 +0000 (17:17 +0100)
pod/perlretut.pod

index 0a2d563..a43bea1 100644 (file)
@@ -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;