diff options
author | Steffen Mueller <smueller@cpan.org> | 2011-02-10 10:22:56 +0100 |
---|---|---|
committer | Steffen Mueller <smueller@cpan.org> | 2011-07-12 20:53:56 +0200 |
commit | 629b8367994e3547cfdf9b8b7440a5a00c577c34 (patch) | |
tree | b00acd2aa61989ae21f0ea771b2587d5a1395661 /dist | |
parent | f0608b17db2e1d871f66b74784e401a1118fc680 (diff) | |
download | perl-629b8367994e3547cfdf9b8b7440a5a00c577c34.tar.gz |
Re-apply typo fixes from c4a6f826b3676d1fdbd99
These had to be reverted for the ExtUtils::ParseXS rebase of Jim
Keenan's strictification work.
Originally reverted as 8e19e0c1f155990dc120199.
Diffstat (limited to 'dist')
-rw-r--r-- | dist/ExtUtils-ParseXS/Changes | 2 | ||||
-rw-r--r-- | dist/ExtUtils-ParseXS/lib/ExtUtils/ParseXS.pm | 2 | ||||
-rw-r--r-- | dist/ExtUtils-ParseXS/lib/ExtUtils/ParseXS.pod | 2 | ||||
-rw-r--r-- | dist/ExtUtils-ParseXS/lib/ExtUtils/ParseXS/CountLines.pm | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/dist/ExtUtils-ParseXS/Changes b/dist/ExtUtils-ParseXS/Changes index 45b30a5a56..8ebc900d4b 100644 --- a/dist/ExtUtils-ParseXS/Changes +++ b/dist/ExtUtils-ParseXS/Changes @@ -230,7 +230,7 @@ Revision history for Perl extension ExtUtils::ParseXS. - On Win32, there was a DLL file we create during testing that we couldn't delete unless we closed it first, so testing failed when - the deletiong was attempted. This should now work (provided the + the deletion was attempted. This should now work (provided the version of perl is high enough to have DynaLoader::dl_unload_file() - I'm not sure what will happen otherwise). [Steve Hay] diff --git a/dist/ExtUtils-ParseXS/lib/ExtUtils/ParseXS.pm b/dist/ExtUtils-ParseXS/lib/ExtUtils/ParseXS.pm index 156f6e5ac7..6ddb5c6bec 100644 --- a/dist/ExtUtils-ParseXS/lib/ExtUtils/ParseXS.pm +++ b/dist/ExtUtils-ParseXS/lib/ExtUtils/ParseXS.pm @@ -720,7 +720,7 @@ EOF # 0: type, 1: with_size, 2: how, 3: how_size if ($t and not $t->[1] and $t->[0] eq 'p') { - # PUSHp corresponds to setpvn. Treate setpv directly + # PUSHp corresponds to setpvn. Treat setpv directly my $what = eval qq("$t->[2]"); warn $@ if $@; diff --git a/dist/ExtUtils-ParseXS/lib/ExtUtils/ParseXS.pod b/dist/ExtUtils-ParseXS/lib/ExtUtils/ParseXS.pod index f5ffb57771..535fe0943d 100644 --- a/dist/ExtUtils-ParseXS/lib/ExtUtils/ParseXS.pod +++ b/dist/ExtUtils-ParseXS/lib/ExtUtils/ParseXS.pod @@ -56,7 +56,7 @@ Adds C<extern "C"> to the C code. Default is false. =item B<hiertype> -Retains C<::> in type names so that C++ hierachical types can be +Retains C<::> in type names so that C++ hierarchical types can be mapped. Default is false. =item B<except> diff --git a/dist/ExtUtils-ParseXS/lib/ExtUtils/ParseXS/CountLines.pm b/dist/ExtUtils-ParseXS/lib/ExtUtils/ParseXS/CountLines.pm index 26f4b6a455..d576c09637 100644 --- a/dist/ExtUtils-ParseXS/lib/ExtUtils/ParseXS/CountLines.pm +++ b/dist/ExtUtils-ParseXS/lib/ExtUtils/ParseXS/CountLines.pm @@ -40,7 +40,7 @@ sub DESTROY { } sub UNTIE { - # This sub does nothing, but is neccessary for references to be released. + # This sub does nothing, but is necessary for references to be released. } sub end_marker { |