From: David Steinbrunner Date: Tue, 21 May 2013 10:59:07 +0000 (-0400) Subject: typo fix for File::Find X-Git-Tag: upstream/5.20.0~3389 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c84f4bc67c7c5d0722ecf3460daaac8426330799;p=platform%2Fupstream%2Fperl.git typo fix for File::Find Bump $VERSION for File::Find. --- diff --git a/lib/File/Find.pm b/lib/File/Find.pm index d1dbc52..99b868e 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##;