summaryrefslogtreecommitdiff
path: root/cpan/perlfaq
diff options
context:
space:
mode:
authorChris 'BinGOs' Williams <chris@bingosnet.co.uk>2013-03-07 19:31:01 +0000
committerChris 'BinGOs' Williams <chris@bingosnet.co.uk>2013-03-07 19:31:01 +0000
commitf78966ffb0f47ffdd7e0bb07b422308709bd39ae (patch)
tree1a10b7a633f68870ec31c393cf080a8b90425207 /cpan/perlfaq
parentb2a8d771f2f5721aa711c6ecdb42fdc198bfd244 (diff)
downloadperl-f78966ffb0f47ffdd7e0bb07b422308709bd39ae.tar.gz
Update perlfaq to CPAN version 5.0150042
[DELTA] 5.0150042 Wed 6 Mar 2013 14:37:08 +0100 * Fix dodgy link as reports in #114260 of cpan RT (ranguard) * Hex typo (Martin Becker) * Typo (joaquinferrero)
Diffstat (limited to 'cpan/perlfaq')
-rw-r--r--cpan/perlfaq/lib/perlfaq.pm2
-rw-r--r--cpan/perlfaq/lib/perlfaq2.pod2
-rw-r--r--cpan/perlfaq/lib/perlglossary.pod6
3 files changed, 5 insertions, 5 deletions
diff --git a/cpan/perlfaq/lib/perlfaq.pm b/cpan/perlfaq/lib/perlfaq.pm
index bbd176c11d..976b525cb4 100644
--- a/cpan/perlfaq/lib/perlfaq.pm
+++ b/cpan/perlfaq/lib/perlfaq.pm
@@ -1,6 +1,6 @@
package perlfaq;
{
- $perlfaq::VERSION = '5.0150041';
+ $perlfaq::VERSION = '5.0150042';
}
0; # not is it supposed to be loaded
diff --git a/cpan/perlfaq/lib/perlfaq2.pod b/cpan/perlfaq/lib/perlfaq2.pod
index e890cc34a1..ce7cd1b3b2 100644
--- a/cpan/perlfaq/lib/perlfaq2.pod
+++ b/cpan/perlfaq/lib/perlfaq2.pod
@@ -151,7 +151,7 @@ Perl user group.
CPAN, or the Comprehensive Perl Archive Network L<http://www.cpan.org/>,
is a replicated, worldwide repository of Perl software.
-See L<What is CPAN?|/"What modules and extensions are available for Perl? What is CPAN? What does CPANE<sol>srcE<sol>... mean?">.
+See L<What is CPAN?|/"What modules and extensions are available for Perl? What is CPAN?">.
=head2 Where can I post questions?
diff --git a/cpan/perlfaq/lib/perlglossary.pod b/cpan/perlfaq/lib/perlglossary.pod
index c173defd8a..6d6f280c2b 100644
--- a/cpan/perlfaq/lib/perlglossary.pod
+++ b/cpan/perlfaq/lib/perlglossary.pod
@@ -89,8 +89,8 @@ name so people don’t realize they are using a program.
=item architecture
-The kind of X<architecture>computer you’re working on, where one “kind” of
-computer means all those computers sharing a compatible machine language.
+The kind of X<architecture>computer you’re working on, where one “kind of
+computer” means all those computers sharing a compatible machine language.
Since Perl programs are (typically) simple text files, not executable
images, a Perl program is much less sensitive to the architecture it’s
running on than programs in other languages, such as C, that are B<compiled>
@@ -1495,7 +1495,7 @@ it’s just a fancy form of quoting.
=item hexadecimal
A X<hexadecimals>number in base 16, “hex” for short. The digits for 10
-through 16 are customarily represented by the letters C<a> through C<f>.
+through 15 are customarily represented by the letters C<a> through C<f>.
Hexadecimal constants in Perl start with C<0x>. See also the C<hex>
function in Camel chapter 27, “Functions”.