This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
typo fix for File::Find
authorDavid Steinbrunner <dsteinbrunner@pobox.com>
Tue, 21 May 2013 10:59:07 +0000 (06:59 -0400)
committerJames E Keenan <jkeenan@cpan.org>
Sat, 25 May 2013 02:15:02 +0000 (04:15 +0200)
Bump $VERSION for File::Find.

lib/File/Find.pm

index d1dbc52..99b868e 100644 (file)
@@ -3,7 +3,7 @@ use 5.006;
 use strict;
 use warnings;
 use warnings::register;
-our $VERSION = '1.23';
+our $VERSION = '1.24';
 require Exporter;
 require Cwd;
 
@@ -488,7 +488,7 @@ sub _find_opt {
        $cwd = VMS::Filespec::unixpath($cwd);
 
        # Apparently this is not expected to have a trailing space.
-       # To attempt to make VMS/UNIX conversions mostly reversable,
+       # To attempt to make VMS/UNIX conversions mostly reversible,
        # a trailing slash is needed.  The run-time functions ignore the
        # resulting double slash, but it causes the perl tests to fail.
         $cwd =~ s#/\z##;