summaryrefslogtreecommitdiff
path: root/pod/perlobj.pod
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2001-09-22 13:48:29 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2001-09-22 13:48:29 +0000
commite2c26d79311ef2c1103d42b26fa48df7f6481221 (patch)
tree7172e9aa75e170fe50852ddb8e574e382323c9d8 /pod/perlobj.pod
parentc5231be92fe6978176a3544b62f54c9082191b9f (diff)
downloadperl-e2c26d79311ef2c1103d42b26fa48df7f6481221.tar.gz
Rename perltootc as perltooc for 8.3-friedliness.
p4raw-id: //depot/perl@12132
Diffstat (limited to 'pod/perlobj.pod')
-rw-r--r--pod/perlobj.pod6
1 files changed, 3 insertions, 3 deletions
diff --git a/pod/perlobj.pod b/pod/perlobj.pod
index f71932024f..73b67dee9a 100644
--- a/pod/perlobj.pod
+++ b/pod/perlobj.pod
@@ -7,7 +7,7 @@ perlobj - Perl objects
First you need to understand what references are in Perl.
See L<perlref> for that. Second, if you still find the following
reference work too complicated, a tutorial on object-oriented programming
-in Perl can be found in L<perltoot> and L<perltootc>.
+in Perl can be found in L<perltoot> and L<perltooc>.
If you're still with us, then
here are three very simple definitions that you should find reassuring.
@@ -200,7 +200,7 @@ methods and instance methods.
A class method expects a class name as the first argument. It
provides functionality for the class as a whole, not for any
individual object belonging to the class. Constructors are often
-class methods, but see L<perltoot> and L<perltootc> for alternatives.
+class methods, but see L<perltoot> and L<perltooc> for alternatives.
Many class methods simply ignore their first argument, because they
already know what package they're in and don't care what package
they were invoked via. (These aren't necessarily the same, because
@@ -559,7 +559,7 @@ breaks the circularities in the self-referential structure.
=head1 SEE ALSO
A kinder, gentler tutorial on object-oriented programming in Perl can
-be found in L<perltoot>, L<perlboot> and L<perltootc>. You should
+be found in L<perltoot>, L<perlboot> and L<perltooc>. You should
also check out L<perlbot> for other object tricks, traps, and tips, as
well as L<perlmodlib> for some style guides on constructing both
modules and classes.