From: Perl 5 Porters Date: Mon, 11 Mar 1996 07:12:46 +0000 (+0000) Subject: . . . and another typo gone. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=03dc9dad76074724f481ba52b1330fbd20e39934;p=p5sagit%2Fp5-mst-13.2.git . . . and another typo gone. --- diff --git a/pod/perltie.pod b/pod/perltie.pod index 90ac739..96f61eb 100644 --- a/pod/perltie.pod +++ b/pod/perltie.pod @@ -218,7 +218,7 @@ anonymous ARRAY ref) will be accessed. In our example, just to show you that you don't I have to return an ARRAY reference, we'll choose a HASH reference to represent our object. A HASH works out well as a generic record type: the C<{BOUND}> field will -store the maximum bound allowed, and the C<{ARRAY} field will hold the +store the maximum bound allowed, and the C<{ARRAY}> field will hold the true ARRAY ref. If someone outside the class tries to dereference the object returned (doubtless thinking it an ARRAY ref), they'll blow up. This just goes to show you that you should respect an object's privacy.