diff options
author | Chris 'BinGOs' Williams <chris@bingosnet.co.uk> | 2010-06-28 11:46:01 +0100 |
---|---|---|
committer | Chris 'BinGOs' Williams <chris@bingosnet.co.uk> | 2010-06-28 11:46:01 +0100 |
commit | f0f0d2aad12d9003442c48eeeaf78098fa4bca6b (patch) | |
tree | f26c3f040b60c6297fe9eddfd6f5b2ab075af2ff /cpan/Module-Load | |
parent | d8e47b5c4ce3144b53fbe637d049ec0a9b00b92e (diff) | |
download | perl-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
Diffstat (limited to 'cpan/Module-Load')
-rw-r--r-- | cpan/Module-Load/lib/Module/Load.pm | 8 |
1 files changed, 4 insertions, 4 deletions
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 |