diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1999-10-24 11:25:51 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1999-10-24 11:25:51 +0000 |
commit | 8b87c1924f41e70982fd7a85c85db2504abdca24 (patch) | |
tree | c00aaee1125db79800fcd7044b712142204b5390 /lib | |
parent | ed344e4f516e393bcdfd181ec61ffbb056bebd56 (diff) | |
download | perl-8b87c1924f41e70982fd7a85c85db2504abdca24.tar.gz |
README nits pointed out by Chris Nandor <pudge@pobox.com>
p4raw-id: //depot/perl@4433
Diffstat (limited to 'lib')
-rw-r--r-- | lib/File/Path.pm | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/lib/File/Path.pm b/lib/File/Path.pm index 729037294b..a82fd8004e 100644 --- a/lib/File/Path.pm +++ b/lib/File/Path.pm @@ -2,15 +2,14 @@ package File::Path; =head1 NAME -File::Path - create or remove a series of directories +File::Path - create or remove directory trees =head1 SYNOPSIS -C<use File::Path> + use File::Path; -C<mkpath(['/foo/bar/baz', 'blurfl/quux'], 1, 0711);> - -C<rmtree(['foo/bar/baz', 'blurfl/quux'], 1, 1);> + mkpath(['/foo/bar/baz', 'blurfl/quux'], 1, 0711); + rmtree(['foo/bar/baz', 'blurfl/quux'], 1, 1); =head1 DESCRIPTION |