Fix typos (spelling errors) in cpan/Module-Load-Conditional/*.
authorPeter J. Acklam <pjacklam@online.no>
Fri, 7 Jan 2011 07:09:46 +0000 (23:09 -0800)
committerChris 'BinGOs' Williams <chris@bingosnet.co.uk>
Fri, 7 Jan 2011 11:15:09 +0000 (11:15 +0000)
# 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>
cpan/Module-Load-Conditional/lib/Module/Load/Conditional.pm
cpan/Module-Load-Conditional/t/01_Module_Load_Conditional.t

index 1bceb44..ba597a2 100644 (file)
@@ -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.
 
index b5d78c7..7a51266 100644 (file)
@@ -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]
     );
 
 }