From: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Date: Sat, 24 Jun 2017 13:27:07 +0000
Subject: Fix spelling errors.
Bug:
https://rt.cpan.org/Ticket/Display.html?id=84315
Forwarded:
https://rt.cpan.org/Ticket/Display.html?id=84315
Author: intrigeri <intrigeri@debian.org>
---
lib/FindBin/libs.pm | 16 ++++++++--------
libs_curr_pm | 16 ++++++++--------
libs_old_pm | 14 +++++++-------
3 files changed, 23 insertions(+), 23 deletions(-)
diff --git a/lib/FindBin/libs.pm b/lib/FindBin/libs.pm
index 9da2a60..924171e 100644
--- a/lib/FindBin/libs.pm
+++ b/lib/FindBin/libs.pm
@@ -525,7 +525,7 @@ Perl v5.10+.
use FindBin::libs qw( base=api_foo subdir=lib subonly );
# no harm in using this multiple times to use
- # or export multple layers of libs.
+ # or export multiple layers of libs.
use FindBin::libs qw( export );
use FindBin::libs qw( export=found base=lib );
@@ -542,7 +542,7 @@ and "use lib" or export an array of the directories found. The default
is to locate "lib" directories and "use lib" them without printing
the list.
-Options controll whether the lib's found are exported into the caller's
+Options control whether the lib's found are exported into the caller's
space, exported to PERL5LIB, or printed. Exporting or setting perl5lib
will turn off the default of "use lib" so that:
@@ -632,7 +632,7 @@ bin with
use FindBin::libs qw( export scalar base=etc );
will have an $etc variable with the absolute path to ./bin/../etc.
-For configuration varibles this is usually what you want and allows
+For configuration variables this is usually what you want and allows
for "$etc/Foo.conf" rather than "$etc[0]/Foo.conf".
=item "append"
@@ -746,7 +746,7 @@ since the argument ignore list replaces the original one.
=head2 Homegrown Library Management
-An all-too-common occurrance managing perly projects is
+An all-too-common occurrence managing perly projects is
being unable to install new modules becuse "it might
break things", and being unable to test them because
you can't install them. The usual outcome of this is a
@@ -778,7 +778,7 @@ having to modify a single line of code.
Say your sandbox is in ./sandbox and you are currently
working in ./sandbox/projects/package/bin on a perl
executable. You may have some number of modules that
-are specific -- or customized -- for this pacakge,
+are specific -- or customized -- for this package,
share some modules within the project, and may want
to use company-wide modules that are managed out of
./sandbox in development. All of this lives under a
@@ -862,7 +862,7 @@ sandbox area.
=item Managing Configuration and Meta-data Files
The "base" option alters FindBin::libs standard base directory.
-This allows for a heirarchical set of metadata directories:
+This allows for a hierarchical set of metadata directories:
./sandbox
./meta
@@ -1020,7 +1020,7 @@ Due to previous complaints that abs_path did not
work properly on all systems, the current
version of FindBin::libs uses File::Spec to
break apart and re-assemble directories, with
-abs_path used optinally. If "abs_path cwd" works
+abs_path used optionally. If "abs_path cwd" works
then abs_path is used on the directory paths
handed by File::Spec::catpath(); otherwise the
paths are used as-is. This may leave users on
@@ -1029,7 +1029,7 @@ copies of external library directories in @INC.
Another issue is that I've heard reports of
some systems failing the '-d' test on symlinks,
-where '-e' would have succeded.
+where '-e' would have succeeded.
=head1 See Also
diff --git a/libs_curr_pm b/libs_curr_pm
index 9da2a60..924171e 100644
--- a/libs_curr_pm
+++ b/libs_curr_pm
@@ -525,7 +525,7 @@ Perl v5.10+.
use FindBin::libs qw( base=api_foo subdir=lib subonly );
# no harm in using this multiple times to use
- # or export multple layers of libs.
+ # or export multiple layers of libs.
use FindBin::libs qw( export );
use FindBin::libs qw( export=found base=lib );
@@ -542,7 +542,7 @@ and "use lib" or export an array of the directories found. The default
is to locate "lib" directories and "use lib" them without printing
the list.
-Options controll whether the lib's found are exported into the caller's
+Options control whether the lib's found are exported into the caller's
space, exported to PERL5LIB, or printed. Exporting or setting perl5lib
will turn off the default of "use lib" so that:
@@ -632,7 +632,7 @@ bin with
use FindBin::libs qw( export scalar base=etc );
will have an $etc variable with the absolute path to ./bin/../etc.
-For configuration varibles this is usually what you want and allows
+For configuration variables this is usually what you want and allows
for "$etc/Foo.conf" rather than "$etc[0]/Foo.conf".
=item "append"
@@ -746,7 +746,7 @@ since the argument ignore list replaces the original one.
=head2 Homegrown Library Management
-An all-too-common occurrance managing perly projects is
+An all-too-common occurrence managing perly projects is
being unable to install new modules becuse "it might
break things", and being unable to test them because
you can't install them. The usual outcome of this is a
@@ -778,7 +778,7 @@ having to modify a single line of code.
Say your sandbox is in ./sandbox and you are currently
working in ./sandbox/projects/package/bin on a perl
executable. You may have some number of modules that
-are specific -- or customized -- for this pacakge,
+are specific -- or customized -- for this package,
share some modules within the project, and may want
to use company-wide modules that are managed out of
./sandbox in development. All of this lives under a
@@ -862,7 +862,7 @@ sandbox area.
=item Managing Configuration and Meta-data Files
The "base" option alters FindBin::libs standard base directory.
-This allows for a heirarchical set of metadata directories:
+This allows for a hierarchical set of metadata directories:
./sandbox
./meta
@@ -1020,7 +1020,7 @@ Due to previous complaints that abs_path did not
work properly on all systems, the current
version of FindBin::libs uses File::Spec to
break apart and re-assemble directories, with
-abs_path used optinally. If "abs_path cwd" works
+abs_path used optionally. If "abs_path cwd" works
then abs_path is used on the directory paths
handed by File::Spec::catpath(); otherwise the
paths are used as-is. This may leave users on
@@ -1029,7 +1029,7 @@ copies of external library directories in @INC.
Another issue is that I've heard reports of
some systems failing the '-d' test on symlinks,
-where '-e' would have succeded.
+where '-e' would have succeeded.
=head1 See Also
diff --git a/libs_old_pm b/libs_old_pm
index fa4f840..07c4801 100644
--- a/libs_old_pm
+++ b/libs_old_pm
@@ -392,7 +392,7 @@ perl installations.
FindBin::libs locates and performs a 'use lib' for
directories along the path of $FindBin::Bin to automate
locating modules. Uses File::Spec and Cwd's abs_path to
-accomodate multiple O/S and redundant symlinks.
+accommodate multiple O/S and redundant symlinks.
# search up $FindBin::Bin looking for ./lib directories
# and "use lib" them.
@@ -476,7 +476,7 @@ accomodate multiple O/S and redundant symlinks.
use FindBin::libs qw( base=api_foo subdir=lib subonly );
# no harm in using this multiple times to use
- # or export multple layers of libs.
+ # or export multiple layers of libs.
use FindBin::libs qw( export );
use FindBin::libs qw( export=found base=lib );
@@ -493,7 +493,7 @@ and "use lib" or export an array of the directories found. The default
is to locate "lib" directories and "use lib" them without printing
the list.
-Options controll whether the lib's found are exported into the caller's
+Options control whether the lib's found are exported into the caller's
space, exported to PERL5LIB, or printed. Exporting or setting perl5lib
will turn off the default of "use lib" so that:
@@ -622,7 +622,7 @@ since the argument ignore list replaces the original one.
=head2 Homegrown Library Management
-An all-too-common occurrance managing perly projects is
+An all-too-common occurrence managing perly projects is
being unable to install new modules becuse "it might
break things", and being unable to test them because
you can't install them. The usual outcome of this is a
@@ -738,7 +738,7 @@ sandbox area.
=item Managing Configuration and Meta-data Files
The "base" option alters FindBin::libs standard base directory.
-This allows for a heirarchical set of metadata directories:
+This allows for a hierarchical set of metadata directories:
./sandbox
./meta
@@ -896,7 +896,7 @@ Due to previous complaints that abs_path did not
work properly on all systems, the current
version of FindBin::libs uses File::Spec to
break apart and re-assemble directories, with
-abs_path used optinally. If "abs_path cwd" works
+abs_path used optionally. If "abs_path cwd" works
then abs_path is used on the directory paths
handed by File::Spec::catpath(); otherwise the
paths are used as-is. This may leave users on
@@ -905,7 +905,7 @@ copies of external library directories in @INC.
Another issue is that I've heard reports of
some systems failing the '-d' test on symlinks,
-where '-e' would have succeded.
+where '-e' would have succeeded.
=head1 See Also