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
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;
}