From af131e482fcca9737a77b6e1e76aea95f1e07760 Mon Sep 17 00:00:00 2001 From: Perl 5 Porters Date: Fri, 9 Feb 1996 01:16:18 +0000 Subject: Tie::Hash patch. --- pod/perlbot.pod | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'pod/perlbot.pod') diff --git a/pod/perlbot.pod b/pod/perlbot.pod index 72c18703b4..0fd545fe88 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; -- cgit v1.2.1