Rephrase "Perl Home Page" References
[p5sagit/p5-mst-13.2.git] / pod / perlfaq3.pod
index 78f220a..2fdc2fc 100644 (file)
@@ -1,6 +1,6 @@
 =head1 NAME
 
-perlfaq3 - Programming Tools ($Revision: 1.35 $, $Date: 2003/08/24 05:26:59 $)
+perlfaq3 - Programming Tools ($Revision: 1.37 $, $Date: 2003/11/24 19:55:50 $)
 
 =head1 DESCRIPTION
 
@@ -65,7 +65,7 @@ You can use the ExtUtils::Installed module to show all
 installed distributions, although it can take awhile to do
 its magic.  The standard library which comes with Perl just
 shows up as "Perl" (although you can get those with
-Mod::CoreList).
+Module::CoreList).
 
        use ExtUtils::Installed;
 
@@ -146,10 +146,8 @@ Here's a sample use of Benchmark:
   timethese($count, {
             'map' => sub { my @a = @junk;
                           map { s/a/b/ } @a;
-                          return @a
-                        },
+                          return @a },
             'for' => sub { my @a = @junk;
-                          local $_;
                           for (@a) { s/a/b/ };
                           return @a },
            });