diff options
author | David Steinbrunner <dsteinbrunner@pobox.com> | 2013-05-21 07:11:33 -0400 |
---|---|---|
committer | James E Keenan <jkeenan@cpan.org> | 2013-05-25 05:19:53 +0200 |
commit | 2d3da5dff664249958bdf802dd9ac45f4b48be3a (patch) | |
tree | 0151ba78b4a1992850969e8ec950ad007b981c63 /dist/Cwd | |
parent | 344b43a3ab9d4fa948543f8da3500baaccff34e0 (diff) | |
download | perl-2d3da5dff664249958bdf802dd9ac45f4b48be3a.tar.gz |
typo fixes for Cwd
Bump $VERSION.
Diffstat (limited to 'dist/Cwd')
-rw-r--r-- | dist/Cwd/Cwd.pm | 4 | ||||
-rw-r--r-- | dist/Cwd/lib/File/Spec/VMS.pm | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/dist/Cwd/Cwd.pm b/dist/Cwd/Cwd.pm index 8886c67b4c..5cbb9d8a19 100644 --- a/dist/Cwd/Cwd.pm +++ b/dist/Cwd/Cwd.pm @@ -171,7 +171,7 @@ use strict; use Exporter; use vars qw(@ISA @EXPORT @EXPORT_OK $VERSION); -$VERSION = '3.40'; +$VERSION = '3.41'; my $xs_version = $VERSION; $VERSION =~ tr/_//; @@ -343,7 +343,7 @@ foreach my $try ('/bin/pwd', } my $found_pwd_cmd = defined($pwd_cmd); unless ($pwd_cmd) { - # Isn't this wrong? _backtick_pwd() will fail if somenone has + # Isn't this wrong? _backtick_pwd() will fail if someone has # pwd in their path but it is not /bin/pwd or /usr/bin/pwd? # See [perl #16774]. --jhi $pwd_cmd = 'pwd'; diff --git a/dist/Cwd/lib/File/Spec/VMS.pm b/dist/Cwd/lib/File/Spec/VMS.pm index 6af1ac0b3d..ce0dab763e 100644 --- a/dist/Cwd/lib/File/Spec/VMS.pm +++ b/dist/Cwd/lib/File/Spec/VMS.pm @@ -4,7 +4,7 @@ use strict; use vars qw(@ISA $VERSION); require File::Spec::Unix; -$VERSION = '3.40'; +$VERSION = '3.41'; $VERSION =~ tr/_//; @ISA = qw(File::Spec::Unix); @@ -27,7 +27,7 @@ there. This package overrides the implementation of these methods, not the semantics. The default behavior is to allow either VMS or Unix syntax on input and to -return VMS syntax on output unless Unix syntax has been explicity requested +return VMS syntax on output unless Unix syntax has been explicitly requested via the C<DECC$FILENAME_UNIX_REPORT> CRTL feature. =over 4 |