diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1999-05-24 07:24:11 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1999-05-24 07:24:11 +0000 |
commit | 19799a22062ef658e4ac543ea06fa9193323512a (patch) | |
tree | ae9ae04d1351eb1dbbc2ea3cfe207cf056e56371 /pod/perltie.pod | |
parent | d92eb7b0e84a41728b3fbb642691f159dbe28882 (diff) | |
download | perl-19799a22062ef658e4ac543ea06fa9193323512a.tar.gz |
major pod update from Tom Christiansen
p4raw-id: //depot/perl@3460
Diffstat (limited to 'pod/perltie.pod')
-rw-r--r-- | pod/perltie.pod | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perltie.pod b/pod/perltie.pod index 581b4abd65..5611174669 100644 --- a/pod/perltie.pod +++ b/pod/perltie.pod @@ -834,7 +834,7 @@ destructor (DESTROY) is called, which is normal for objects that have no more valid references; and thus the file is closed. In the second example, however, we have stored another reference to -the tied object in C<$x>. That means that when untie() gets called +the tied object in $x. That means that when untie() gets called there will still be a valid reference to the object in existence, so the destructor is not called at that time, and thus the file is not closed. The reason there is no output is because the file buffers |