[perl #20616] code example in the FAQ that isn't strict-friendly.
Beckett Richard-qswi266 [Thu, 30 Jan 2003 11:43:17 +0000 (11:43 +0000)]
Subject: [perl #20616] Tie::IxHash doc error.
From: Beckett Richard-qswi266 (via RT) <perlbug-followup@perl.org>
Message-Id: <rt-20616-49904.16.891027432675@bugs6.perl.org>

p4raw-id: //depot/perl@18605

pod/perlfaq4.pod

index b77567a..b641d58 100644 (file)
@@ -1870,7 +1870,7 @@ it on top of either DB_File or GDBM_File.
 Use the Tie::IxHash from CPAN.
 
     use Tie::IxHash;
-    tie my %myhash, Tie::IxHash;
+    tie my %myhash, 'Tie::IxHash';
     for (my $i=0; $i<20; $i++) {
         $myhash{$i} = 2*$i;
     }