Skip to content

Commit

Permalink
POD corrections
Browse files Browse the repository at this point in the history
  • Loading branch information
Tommy Butler committed Jun 8, 2013
1 parent a03582f commit 9202313
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 8 deletions.
13 changes: 9 additions & 4 deletions File_Util/Changes
@@ -1,18 +1,23 @@
Revision history for Perl extension File::Util.pm

4.131591 Fri Jun 7 22:19:05 CDT 2013

- POD (documentation) corrections.

4.131570 Thu Jun 6 23:15:27 CDT 2013
Since Sat Mar 2 01:13:46 CST 2013, there has been an unofficial code

- Since Sat Mar 2 01:13:46 CST 2013, there has been an unofficial code
freeze in effect, during which time 580 test runs from the CPAN smoke
testers have had a 100% complete PASS rate.

So I'm pleased to announce that I'm releasing this code as-is, under
- So I'm pleased to announce that I'm releasing this code as-is, under
the "STABLE"/"MATURE" designation.

There are important bug fixes since the last STABLE release, particularly
- There are important bug fixes since the last STABLE release, particularly
in making the File::Util::max_dives() method behave as documented. See
also https://rt.cpan.org/Ticket/Display.html?id=85141

Near future plans are laid out in the TODO documentation file also
- Near future plans are laid out in the TODO documentation file also
included with this documentation.

4.130610 Sat Mar 2 01:13:46 CST 2013
Expand Down
1 change: 0 additions & 1 deletion File_Util/dist.ini
Expand Up @@ -6,7 +6,6 @@ is_trial = 0

[Meta::Contributors]
contributor = John Fields <jfields.cpan.org@spammenot.com>
contributor = BrowserUk <browseruk@cpan.org>
contributor = Ricardo SIGNES <rjbs@cpan.org>
contributor = Matt S Trout <perl-stuff@trout.me.uk>
contributor = Nicholas Perez <nperez@cpan.org>
Expand Down
4 changes: 2 additions & 2 deletions File_Util/lib/File/Util.pm
Expand Up @@ -3066,7 +3066,7 @@ File::Util consists of several modules, but only loads the ones it needs when
it needs them and also offers a comparatively fast load-up time, so using
File::Util doesn't bloat your code footprint.
Additionally, File::Util has been optimized to run fast.* In many scenarios
Additionally, File::Util has been optimized to run fast. In many scenarios
it does more and still out-performs other popular IO modules from anywhere
from 100%-400%, although L<Path::Tiny> is also extremely fast at what it is
designed to do.
Expand Down Expand Up @@ -3171,7 +3171,7 @@ You can, however, ask it for certain things (below).
=head2 EXPORT_OK
The following symbols comprise C<@File::Util::EXPORT_OK>), and as such are
The following symbols comprise C<@File::Util::EXPORT_OK>, and as such are
available for import to your namespace only upon request. They can be
used either as object methods or like regular subroutines in your program.
Expand Down
4 changes: 3 additions & 1 deletion File_Util/lib/File/Util/Manual/Examples.pod
Expand Up @@ -242,7 +242,7 @@ mode of the file. (You should usually omit this.)
=head2 Recursively Get the names of all files that end in '.pl'

my @perl_files = $f->list_dir(
'/home/scripts' => { files_match => qr/\.txt$/, recurse => 1 }
'/home/scripts' => { files_match => qr/\.pl$/, recurse => 1 }
}

=head2 Recursively get the names of all files that do NOT end in '.pl'
Expand Down Expand Up @@ -282,11 +282,13 @@ of patterns (AND).
);

The above example would find and return files like:

/home/anakin/mentors/obi-wan/villains/darth-vader/R2.png
/home/anakin/mentors/obi-wan/villains/darth-vader/C3P0.dict
/home/anakin/mentors/obi-wan/villains/darth-vader/my_droids.list

But would not return files like:

/home/anakin/mentors/Qui-Gon Jinn/villains/darth-vader/my_droids.list

=head2 Use a callback to descend through (walk) a directory tree
Expand Down

0 comments on commit 9202313

Please sign in to comment.