_Minor_ change to overload.pm pod
Daniel Chetlin [Mon, 28 Aug 2000 01:14:18 +0000 (18:14 -0700)]
Message-ID: <20000828011418.J769@ilmd.chetlin.org>

p4raw-id: //depot/perl@6860

lib/overload.pm

index ba96bc9..f7772c1 100644 (file)
@@ -878,11 +878,10 @@ numeric value.)  This prints:
 =head2 Two-face references
 
 Suppose you want to create an object which is accessible as both an
-array reference, and a hash reference, similar to the builtin
-L<array-accessible-as-a-hash|perlref/"Pseudo-hashes: Using an array as
-a hash"> builtin Perl type.  Let us make it better than the builtin
-type, there will be no restriction that you cannot use the index 0 of
-your array.
+array reference and a hash reference, similar to the
+L<pseudo-hash|perlref/"Pseudo-hashes: Using an array as a hash">
+builtin Perl type.  Let's make it better than a pseudo-hash by
+allowing index 0 to be treated as a normal element.
 
   package two_refs;
   use overload '%{}' => \&gethash, '@{}' => sub { $ {shift()} };