fix typo - s/was/what/ is to be ignored
Mike Giroux [Sat, 21 Mar 2009 10:33:18 +0000 (06:33 -0400)]
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;