From: Perl 5 Porters Date: Fri, 9 Feb 1996 01:16:18 +0000 (+0000) Subject: Tie::Hash patch. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=af131e482fcca9737a77b6e1e76aea95f1e07760;p=p5sagit%2Fp5-mst-13.2.git Tie::Hash patch. --- diff --git a/pod/perlbot.pod b/pod/perlbot.pod index 72c1870..0fd545f 100644 --- a/pod/perlbot.pod +++ b/pod/perlbot.pod @@ -251,8 +251,8 @@ This example demonstrates an interface for the SDBM class. This creates a package Mydbm; require SDBM_File; - require TieHash; - @ISA = qw( TieHash ); + require Tie::Hash; + @ISA = qw( Tie::Hash ); sub TIEHASH { my $type = shift; @@ -494,8 +494,8 @@ behavior by adding custom FETCH() and STORE() methods, if this is desired. package Mydbm; require SDBM_File; - require TieHash; - @ISA = qw(TieHash); + require Tie::Hash; + @ISA = qw(Tie::Hash); sub TIEHASH { my $type = shift;