summaryrefslogtreecommitdiff
path: root/pod/perlfaq7.pod
diff options
context:
space:
mode:
authorApocalypse <perl@0ne.us>2011-02-15 18:38:04 -0700
committerFather Chrysostomos <sprout@cpan.org>2011-02-15 20:25:25 -0800
commit96090e4f0acf1d24051c680595b4740bd24cb69a (patch)
tree2018450c5cbec81deb0268f3d899e03534c797b9 /pod/perlfaq7.pod
parentc05760c68edc298aadab73da2781ba0fe1cf24b6 (diff)
downloadperl-96090e4f0acf1d24051c680595b4740bd24cb69a.tar.gz
Fix bad pod links found by Test::Pod::LinkCheck
Diffstat (limited to 'pod/perlfaq7.pod')
-rw-r--r--pod/perlfaq7.pod3
1 files changed, 1 insertions, 2 deletions
diff --git a/pod/perlfaq7.pod b/pod/perlfaq7.pod
index 983825b904..5d7a1e896e 100644
--- a/pod/perlfaq7.pod
+++ b/pod/perlfaq7.pod
@@ -633,8 +633,7 @@ Why do you want to do that? :-)
If you want to override a predefined function, such as open(),
then you'll have to import the new definition from a different
-module. See L<perlsub/"Overriding Built-in Functions">. There's
-also an example in L<perltoot/"Class::Template">.
+module. See L<perlsub/"Overriding Built-in Functions">.
If you want to overload a Perl operator, such as C<+> or C<**>,
then you'll want to use the C<use overload> pragma, documented