diff options
author | David Steinbrunner <dsteinbrunner@pobox.com> | 2013-05-21 06:59:07 -0400 |
---|---|---|
committer | James E Keenan <jkeenan@cpan.org> | 2013-05-25 04:15:02 +0200 |
commit | c84f4bc67c7c5d0722ecf3460daaac8426330799 (patch) | |
tree | 461b9eb3c89294a9877dddd9d3ecaf4181139ca4 /lib/File/Find.pm | |
parent | 107bec06d7f6354a0c05a5301ea02c2cc9d30840 (diff) | |
download | perl-c84f4bc67c7c5d0722ecf3460daaac8426330799.tar.gz |
typo fix for File::Find
Bump $VERSION for File::Find.
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 d1dbc52258..99b868ebda 100644 --- a/lib/File/Find.pm +++ b/lib/File/Find.pm @@ -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##; |