Change 18825 by [EMAIL PROTECTED] on 2003/03/04 19:56:28
Doc typos.
Affected files ...
... //depot/perl/lib/File/Find.pm#66 edit
Differences ...
==== //depot/perl/lib/File/Find.pm#66 (text) ====
Index: perl/lib/File/Find.pm
--- perl/lib/File/Find.pm#65~18809~ Sun Mar 2 13:54:53 2003
+++ perl/lib/File/Find.pm Tue Mar 4 11:56:28 2003
@@ -14,7 +14,7 @@
=head1 SYNOPSIS
use File::Find;
- find(\&wanted, @directories_to_seach);
+ find(\&wanted, @directories_to_search);
sub wanted { ... }
use File::Find;
@@ -39,7 +39,7 @@
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
End of Patch.