Doc typos.
[p5sagit/p5-mst-13.2.git] / lib / File / Find.pm
index 9b15494..c5f2a5a 100644 (file)
@@ -14,7 +14,7 @@ File::Find - Traverse a directory tree.
 =head1 SYNOPSIS
 
     use File::Find;
-    find(\&wanted, @directories_to_seach);
+    find(\&wanted, @directories_to_search);
     sub wanted { ... }
 
     use File::Find;
@@ -39,7 +39,7 @@ but have subtle differences.
   find(\%options, @directories);
 
 find() does a breadth-first search over the given @directories in the
-order they are given.  In essense, it works from the top down.
+order they are given.  In essence, it works from the top down.
 
 For each file or directory found the &wanted subroutine is called (see
 below for details).  Additionally, for each directory found it will go