This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
POD typos
[perl5.git] / pod / perlfaq6.pod
index 52ef09d..a9e04a9 100644 (file)
@@ -603,7 +603,7 @@ These strings do not match /\bPerl\b/.
        "Perler"  # no word char before P, but one after l
 
 You don't have to use \b to match words though.  You can look for
-non-word characters surrrounded by word characters.  These strings
+non-word characters surrounded by word characters.  These strings
 match the pattern /\b'\b/.
 
        "don't"   # the ' char is surrounded by "n" and "t"