summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris 'BinGOs' Williams <chris@bingosnet.co.uk>2010-06-28 11:46:01 +0100
committerChris 'BinGOs' Williams <chris@bingosnet.co.uk>2010-06-28 11:46:01 +0100
commitf0f0d2aad12d9003442c48eeeaf78098fa4bca6b (patch)
treef26c3f040b60c6297fe9eddfd6f5b2ab075af2ff
parentd8e47b5c4ce3144b53fbe637d049ec0a9b00b92e (diff)
downloadperl-f0f0d2aad12d9003442c48eeeaf78098fa4bca6b.tar.gz
Update Module-Load to CPAN version 0.18
[DELTA] Changes for 0.18 Tue Mar 2 15:54:30 2010 ============================================ * Documentation fix from Michael Schwern RT #55123
-rwxr-xr-xPorting/Maintainers.pl2
-rw-r--r--cpan/Module-Load/lib/Module/Load.pm8
2 files changed, 5 insertions, 5 deletions
diff --git a/Porting/Maintainers.pl b/Porting/Maintainers.pl
index 9daa57f4e3..a5475a49c3 100755
--- a/Porting/Maintainers.pl
+++ b/Porting/Maintainers.pl
@@ -950,7 +950,7 @@ use File::Glob qw(:case);
'Module::Load' =>
{
'MAINTAINER' => 'kane',
- 'DISTRIBUTION' => 'KANE/Module-Load-0.16.tar.gz',
+ 'DISTRIBUTION' => 'BINGOS/Module-Load-0.18.tar.gz',
'FILES' => q[cpan/Module-Load],
'UPSTREAM' => 'cpan',
},
diff --git a/cpan/Module-Load/lib/Module/Load.pm b/cpan/Module-Load/lib/Module/Load.pm
index 08f64b2b2c..d1269da72c 100644
--- a/cpan/Module-Load/lib/Module/Load.pm
+++ b/cpan/Module-Load/lib/Module/Load.pm
@@ -1,6 +1,6 @@
package Module::Load;
-$VERSION = '0.16';
+$VERSION = '0.18';
use strict;
use File::Spec ();
@@ -141,9 +141,9 @@ If the argument matches only C<[\w:']>, it must be a module
=item *
If the argument matches only C<\w>, it could either be a module or a
-file. We will try to find C<file> first in C<@INC> and if that fails,
-we will try to find C<file.pm> in @INC.
-If both fail, we die with the respective error messages.
+file. We will try to find C<file.pm> first in C<@INC> and if that
+fails, we will try to find C<file> in @INC. If both fail, we die with
+the respective error messages.
=back