summaryrefslogtreecommitdiff
path: root/pod/modpods/Find.pod
diff options
context:
space:
mode:
Diffstat (limited to 'pod/modpods/Find.pod')
-rw-r--r--pod/modpods/Find.pod4
1 files changed, 2 insertions, 2 deletions
diff --git a/pod/modpods/Find.pod b/pod/modpods/Find.pod
index 81b46a9879..40a2aed300 100644
--- a/pod/modpods/Find.pod
+++ b/pod/modpods/Find.pod
@@ -2,7 +2,7 @@
find - traverse a file tree
-=head1 SYNOPSYS
+=head1 SYNOPSIS
use File::Find;
find(\&wanted, '/foo','/bar');
@@ -10,7 +10,7 @@ find - traverse a file tree
=head1 DESCRIPTION
-The wanted() function does whatever verificationsyou want. $dir contains
+The wanted() function does whatever verifications you want. $dir contains
the current directory name, and $_ the current filename within that
directory. $name contains C<"$dir/$_">. You are chdir()'d to $dir when
the function is called. The function may set $prune to prune the tree.