From: jhuckaby Date: Wed, 8 Mar 2006 22:18:17 +0000 (+0000) Subject: fixed typo in POD X-Git-Tag: 0-99_01~65 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=4b93c86ac8ac32442885a41910c75837fd35244d;p=dbsrgits%2FDBM-Deep.git fixed typo in POD --- diff --git a/lib/DBM/Deep.pm b/lib/DBM/Deep.pm index 38ef2b1..524ddcd 100644 --- a/lib/DBM/Deep.pm +++ b/lib/DBM/Deep.pm @@ -1497,8 +1497,8 @@ Here is an example: $db->{foo} = "bar"; $db->{circle} = $db; # ref to self - print $db->{foo} . "\n"; # prints "foo" - print $db->{circle}->{foo} . "\n"; # prints "foo" again + print $db->{foo} . "\n"; # prints "bar" + print $db->{circle}->{foo} . "\n"; # prints "bar" again B: Passing the object to a function that recursively walks the object tree (such as I or even the built-in C or