diff options
author | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2003-03-04 19:56:28 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2003-03-04 19:56:28 +0000 |
commit | 6d355c6e8e3a90a29acd06f8374ed90c53267bb2 (patch) | |
tree | 597ec56293e932133ce95a9afb0bda762a4f43bd /lib/File/Find.pm | |
parent | b5d30a8477a61b970a31cbc1a3c71ed99cd88a26 (diff) | |
download | perl-6d355c6e8e3a90a29acd06f8374ed90c53267bb2.tar.gz |
Doc typos.
p4raw-id: //depot/perl@18825
Diffstat (limited to 'lib/File/Find.pm')
-rw-r--r-- | lib/File/Find.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/File/Find.pm b/lib/File/Find.pm index 9b15494299..c5f2a5a60f 100644 --- a/lib/File/Find.pm +++ b/lib/File/Find.pm @@ -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 |