Skip to content

Commit

Permalink
spelling
Browse files Browse the repository at this point in the history
  • Loading branch information
plicease committed Oct 25, 2024
1 parent 5b2324f commit 8c02399
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 5 deletions.
2 changes: 1 addition & 1 deletion lib/Alien/Build/MM.pm
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,7 @@ sub mm_postamble
"_alien/mm/prefix :\n" .
"\t\$(FULLPERL) -MAlien::Build::MM=cmd -e prefix \$(INSTALLDIRS) $dirs\n\n";

# set verson
# set version
$postamble .= "alien_version : _alien/mm/version\n\n" .
"_alien/mm/version : _alien/mm/prefix\n" .
"\t\$(FULLPERL) -MAlien::Build::MM=cmd -e version \$(VERSION)\n\n";
Expand Down
2 changes: 1 addition & 1 deletion lib/Alien/Build/Manual/FAQ.pod
Original file line number Diff line number Diff line change
Expand Up @@ -461,7 +461,7 @@ also set the environment variable on just some aliens.
=head2 For testing I would like to test both system and share installs!

You can use the C<ALIEN_INSTALL_TYPE> environment variable. It will force either a C<share> or
C<system> install depending on how it is set. For travis you can do something like this:
C<system> install depending on how it is set. For Travis-CI you can do something like this:

env:
matrix:
Expand Down
2 changes: 1 addition & 1 deletion lib/Alien/Build/Plugin/Extract/ArchiveTar.pm
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ sub init
sub _can_bz2
{
# even when Archive::Tar reports that it supports bz2, I can sometimes get this error:
# 'Cannot read enough bytes from the tarfile', so lets just probe for actual support!
# 'Cannot read enough bytes from the tar file', so lets just probe for actual support!
my $dir = Path::Tiny->new(File::Temp::tempdir( CLEANUP => 1 ));
eval {
local $CWD = $dir;
Expand Down
2 changes: 1 addition & 1 deletion lib/Alien/Build/Temp.pm
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ This class is private to L<Alien::Build>.
# we have to be careful about cleanup. This puts all that
# (attempted) carefulness in one place so that when we
# later discover it isn't so careful we can fix it in
# one place rather thabn alllll the places that we need
# one place rather than all the places that we need
# temp directories.

# we also have a speical case for Windows, which often
Expand Down
2 changes: 1 addition & 1 deletion lib/Test/Alien.pm
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ be used, via either C<XS> or L<FFI::Platypus>. It also provides a mechanism for
testing binaries that are provided by the various L<Alien> modules (for example
L<Alien::gmake> and L<Alien::patch>).
L<Alien> modules can actually be useable without a compiler, or without L<FFI::Platypus>
L<Alien> modules can actually be usable without a compiler, or without L<FFI::Platypus>
(for example, if the library is provided by the system, and you are using L<FFI::Platypus>,
or if you are building from source and you are using C<XS>), so tests with missing
prerequisites are automatically skipped. For example, L</xs_ok> will automatically skip
Expand Down
9 changes: 9 additions & 0 deletions spellcheck.ini
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
[Perl]
skip_sections = contributors
skip_sections = author
skip_sections = copyright and license
skip_sections = thanks
[StopWords]
word = unixy
word = umake
word = tar.exe

0 comments on commit 8c02399

Please sign in to comment.