summaryrefslogtreecommitdiff
path: root/pod/perlfaq4.pod
diff options
context:
space:
mode:
authorMark-Jason Dominus <mjd@plover.com>2001-11-08 13:33:18 +0000
committerAbhijit Menon-Sen <ams@wiw.org>2001-11-08 12:49:28 +0000
commita93751fa40b15f424f91bba70d1533c6b4024e42 (patch)
tree1442611ac895495685bfc621051cf70dcb9afdab /pod/perlfaq4.pod
parenteb649f8332a68e044311e1ac390a40e67a4d5e90 (diff)
downloadperl-a93751fa40b15f424f91bba70d1533c6b4024e42.tar.gz
replace http://www.perl.com/CPAN/ with http://www.cpan.org/
Message-Id: <20011108133318.1786.qmail@plover.com> p4raw-id: //depot/perl@12897
Diffstat (limited to 'pod/perlfaq4.pod')
-rw-r--r--pod/perlfaq4.pod6
1 files changed, 3 insertions, 3 deletions
diff --git a/pod/perlfaq4.pod b/pod/perlfaq4.pod
index faccc22d29..d46bd15354 100644
--- a/pod/perlfaq4.pod
+++ b/pod/perlfaq4.pod
@@ -322,7 +322,7 @@ will not create a list of 500,000 integers.
=head2 How can I output Roman numerals?
-Get the http://www.perl.com/CPAN/modules/by-module/Roman module.
+Get the http://www.cpan.org/modules/by-module/Roman module.
=head2 Why aren't my random numbers random?
@@ -334,7 +334,7 @@ than more.
Computers are good at being predictable and bad at being random
(despite appearances caused by bugs in your programs :-).
-http://www.perl.com/CPAN/doc/FMTEYEWTK/random , courtesy of Tom
+http://www.cpan.org/doc/FMTEYEWTK/random , courtesy of Tom
Phoenix, talks more about this. John von Neumann said, ``Anyone who
attempts to generate random numbers by deterministic means is, of
course, living in a state of sin.''
@@ -1473,7 +1473,7 @@ If you need to sort on several fields, the following paradigm is useful.
This can be conveniently combined with precalculation of keys as given
above.
-See http://www.perl.com/CPAN/doc/FMTEYEWTK/sort.html for more about
+See http://www.cpan.org/doc/FMTEYEWTK/sort.html for more about
this approach.
See also the question below on sorting hashes.