summaryrefslogtreecommitdiff
path: root/pod/perlmodlib.PL
diff options
context:
space:
mode:
authorDave Rolsky <autarch@urth.org>2011-07-07 13:45:45 -0500
committerDave Rolsky <autarch@urth.org>2011-09-08 21:47:23 -0500
commit82e1c0d96852007516f20ad25f6a264b63de34de (patch)
tree8b8cef4071411fb7f254c89469b0b7820235a806 /pod/perlmodlib.PL
parenta25275c0c9488d0f50e2e64e5ca84ecb8fd32f7e (diff)
downloadperl-82e1c0d96852007516f20ad25f6a264b63de34de.tar.gz
Remove all references to old OO tutorial docs, and add refs to perlootut where appropriate
Used buildtoc to regenerate pod-related files
Diffstat (limited to 'pod/perlmodlib.PL')
-rw-r--r--pod/perlmodlib.PL4
1 files changed, 2 insertions, 2 deletions
diff --git a/pod/perlmodlib.PL b/pod/perlmodlib.PL
index 26f69cb3e8..74e85e7afa 100644
--- a/pod/perlmodlib.PL
+++ b/pod/perlmodlib.PL
@@ -1044,7 +1044,7 @@ its methods by loading dynamic C or C++ objects, but that should be
totally transparent to the user of the module. Likewise, the module
might set up an AUTOLOAD function to slurp in subroutine definitions on
demand, but this is also transparent. Only the F<.pm> file is required to
-exist. See L<perlsub>, L<perltoot>, and L<AutoLoader> for details about
+exist. See L<perlsub>, L<perlobj>, and L<AutoLoader> for details about
the AUTOLOAD mechanism.
=head2 Guidelines for Module Creation
@@ -1104,7 +1104,7 @@ Let the objects look after themselves! Generally, avoid hard-wired
class names as far as possible.
Avoid C<< $r->Class::func() >> where using C<@ISA=qw(... Class ...)> and
-C<< $r->func() >> would work (see L<perlbot> for more details).
+C<< $r->func() >> would work.
Use autosplit so little used or newly added functions won't be a
burden to programs that don't use them. Add test functions to