diff options
author | Peter J. Acklam <pjacklam@online.no> | 2011-01-06 23:09:46 -0800 |
---|---|---|
committer | Chris 'BinGOs' Williams <chris@bingosnet.co.uk> | 2011-01-07 11:15:09 +0000 |
commit | 8c2265fd54037aa4c0f7ae20b23eb70e62c281c5 (patch) | |
tree | 5db13c1edea4259ef2f248a8a0da9cc2f455d9a4 /cpan/Module-Load-Conditional | |
parent | 96ee1e3519907fa395a1ff951554d277f8a8ed9a (diff) | |
download | perl-8c2265fd54037aa4c0f7ae20b23eb70e62c281c5.tar.gz |
Fix typos (spelling errors) in cpan/Module-Load-Conditional/*.
# New Ticket Created by (Peter J. Acklam)
# Please include the string: [perl #81836]
# in the subject line of all future correspondence about this issue.
# <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=81836 >
Signed-off-by: Chris 'BinGOs' Williams <chris@bingosnet.co.uk>
Diffstat (limited to 'cpan/Module-Load-Conditional')
-rw-r--r-- | cpan/Module-Load-Conditional/lib/Module/Load/Conditional.pm | 4 | ||||
-rw-r--r-- | cpan/Module-Load-Conditional/t/01_Module_Load_Conditional.t | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/cpan/Module-Load-Conditional/lib/Module/Load/Conditional.pm b/cpan/Module-Load-Conditional/lib/Module/Load/Conditional.pm index 1bceb4432d..ba597a23a0 100644 --- a/cpan/Module-Load-Conditional/lib/Module/Load/Conditional.pm +++ b/cpan/Module-Load-Conditional/lib/Module/Load/Conditional.pm @@ -339,7 +339,7 @@ sub _parse_version { ### the following regexp & eval statement comes from the ### ExtUtils::MakeMaker source (EU::MM_Unix->parse_version) ### Following #18892, which tells us the original - ### regex breaks under -T, we must modifiy it so + ### regex breaks under -T, we must modify it so ### it captures the entire expression, and eval /that/ ### rather than $_, which is insecure. my $taint_safe_str = do { $str =~ /(^.*$)/sm; $1 }; @@ -607,7 +607,7 @@ The default is 1; This controls whether C<Module::Load::Conditional> checks your C<%INC> hash to see if a module is available. By default, only C<@INC> is scanned to see if a module is physically on your -filesystem, or avialable via an C<@INC-hook>. Setting this variable +filesystem, or available via an C<@INC-hook>. Setting this variable to C<true> will trust any entries in C<%INC> and return them for you. diff --git a/cpan/Module-Load-Conditional/t/01_Module_Load_Conditional.t b/cpan/Module-Load-Conditional/t/01_Module_Load_Conditional.t index b5d78c7a5d..7a51266e6b 100644 --- a/cpan/Module-Load-Conditional/t/01_Module_Load_Conditional.t +++ b/cpan/Module-Load-Conditional/t/01_Module_Load_Conditional.t @@ -120,7 +120,7 @@ use_ok( 'Module::Load::Conditional' ); my $rv = check_install( module => 'Module::Does::Not::Exist' ); ok( !$rv->{uptodate} && !$rv->{version} && !$rv->{file}, - q[Verify non-existant module] + q[Verify non-existent module] ); } |