summaryrefslogtreecommitdiff
path: root/cpan/perlfaq
diff options
context:
space:
mode:
authorChris 'BinGOs' Williams <chris@bingosnet.co.uk>2013-05-24 19:15:58 +0100
committerChris 'BinGOs' Williams <chris@bingosnet.co.uk>2013-05-24 19:15:58 +0100
commitf3dd8566cf2591f2ae3220437898ec986c5226d4 (patch)
tree4b20836795ad71c31ea7d3d08adb6012f978a693 /cpan/perlfaq
parentbbf2f5be121c69b9c2c5ad2cb7f313f3a3833fce (diff)
downloadperl-f3dd8566cf2591f2ae3220437898ec986c5226d4.tar.gz
Update perlfaq to CPAN version 5.0150043
[DELTA] 5.0150043 Sun 12 May 2013 19:40:17 +0100 * Various typos and URL fixes (dsteinbrunner) * Typo (argrath)
Diffstat (limited to 'cpan/perlfaq')
-rw-r--r--cpan/perlfaq/lib/perlfaq.pm2
-rw-r--r--cpan/perlfaq/lib/perlfaq.pod2
-rw-r--r--cpan/perlfaq/lib/perlfaq3.pod8
-rw-r--r--cpan/perlfaq/lib/perlfaq4.pod4
-rw-r--r--cpan/perlfaq/lib/perlfaq5.pod2
-rw-r--r--cpan/perlfaq/lib/perlfaq7.pod2
6 files changed, 10 insertions, 10 deletions
diff --git a/cpan/perlfaq/lib/perlfaq.pm b/cpan/perlfaq/lib/perlfaq.pm
index 976b525cb4..907a1992c2 100644
--- a/cpan/perlfaq/lib/perlfaq.pm
+++ b/cpan/perlfaq/lib/perlfaq.pm
@@ -1,6 +1,6 @@
package perlfaq;
{
- $perlfaq::VERSION = '5.0150042';
+ $perlfaq::VERSION = '5.0150043';
}
0; # not is it supposed to be loaded
diff --git a/cpan/perlfaq/lib/perlfaq.pod b/cpan/perlfaq/lib/perlfaq.pod
index 449c0a2de8..dff90c964d 100644
--- a/cpan/perlfaq/lib/perlfaq.pod
+++ b/cpan/perlfaq/lib/perlfaq.pod
@@ -1358,7 +1358,7 @@ How can I do RPC in Perl?
=head1 CREDITS
Tom Christiansen wrote the original perlfaq then expanded it with the
-help of Nat Torkington. brian d foy substantialy edited and expanded
+help of Nat Torkington. brian d foy substantially edited and expanded
the perlfaq. perlfaq-workers and others have also supplied feedback,
patches and corrections over the years.
diff --git a/cpan/perlfaq/lib/perlfaq3.pod b/cpan/perlfaq/lib/perlfaq3.pod
index 84c6bff653..7fc7e75721 100644
--- a/cpan/perlfaq/lib/perlfaq3.pod
+++ b/cpan/perlfaq/lib/perlfaq3.pod
@@ -371,7 +371,7 @@ the tool runs on Windows 9x/NT/2000/XP or later.
L<http://kephra.sf.net>
GUI Editor written in Perl using wxWidgets and Scintilla with lots of smaller features.
-Aims for an UI based on Perls principles like TIMTWTDI and "easy thinkd should be ..".
+Aims for an UI based on Perls principles like TIMTWTDI and "easy things should be ..".
=item Komodo
@@ -452,7 +452,7 @@ among others.
If you are using MacOS, the same concerns apply. MacPerl (for Classic
environments) comes with a simple editor. Popular external editors are
-BBEdit ( L<http://www.bbedit.com/> ) or Alpha (
+BBEdit ( L<http://www.barebones.com/products/bbedit/> ) or Alpha (
L<http://www.his.com/~jguyer/Alpha/Alpha8.html> ). MacOS X users can use
Unix editors as well.
@@ -572,10 +572,10 @@ is an editor, written and extensible in Tcl, that nonetheless has
built-in support for several popular markup and programming languages,
including Perl and HTML ( L<http://www.his.com/~jguyer/Alpha/Alpha8.html> ).
-=item BBEdit and BBEdit Lite
+=item BBEdit and TextWrangler
are text editors for Mac OS that have a Perl sensitivity mode
-( L<http://web.barebones.com/> ).
+( L<http://www.barebones.com/> ).
=back
diff --git a/cpan/perlfaq/lib/perlfaq4.pod b/cpan/perlfaq/lib/perlfaq4.pod
index 8378ba7176..72607f3691 100644
--- a/cpan/perlfaq/lib/perlfaq4.pod
+++ b/cpan/perlfaq/lib/perlfaq4.pod
@@ -398,7 +398,7 @@ random number between 0 and 5 that you can then add to 10.
Hence you derive the following simple function to abstract
that. It selects a random integer between the two given
-integers (inclusive), For example: C<random_int_between(50,120)>.
+integers (inclusive). For example: C<random_int_between(50,120)>.
sub random_int_between {
my($min, $max) = @_;
@@ -1615,7 +1615,7 @@ such as C<push>, C<pop>, C<shift>, C<unshift>, or C<splice> to do
that.
Sometimes, however, linked lists can be useful in situations where you
-want to "shard" an array so you have have many small arrays instead of
+want to "shard" an array so you have many small arrays instead of
a single big array. You can keep arrays longer than Perl's largest
array index, lock smaller arrays separately in threaded programs,
reallocate less memory, or quickly insert elements in the middle of
diff --git a/cpan/perlfaq/lib/perlfaq5.pod b/cpan/perlfaq/lib/perlfaq5.pod
index c8cb64eafa..a2baf16e5c 100644
--- a/cpan/perlfaq/lib/perlfaq5.pod
+++ b/cpan/perlfaq/lib/perlfaq5.pod
@@ -1134,7 +1134,7 @@ accessing an element of the array actually accesses the corresponding
line in the file.
If you want to load the entire file, you can use the L<File::Slurp>
-module to do it in one one simple and efficient step:
+module to do it in one simple and efficient step:
use File::Slurp;
diff --git a/cpan/perlfaq/lib/perlfaq7.pod b/cpan/perlfaq/lib/perlfaq7.pod
index 099ed6b8f5..12c25ef399 100644
--- a/cpan/perlfaq/lib/perlfaq7.pod
+++ b/cpan/perlfaq/lib/perlfaq7.pod
@@ -201,7 +201,7 @@ transfer the module to you.
If you can not reach the author for some reason contact
the PAUSE admins at modules@perl.org who may be able to help,
-but each case it treated seperatly.
+but each case it treated separately.
=over 4