summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorFather Chrysostomos <sprout@cpan.org>2012-01-05 20:18:04 -0800
committerFather Chrysostomos <sprout@cpan.org>2012-01-05 20:28:20 -0800
commit4823829628745e4bd7e9bfe988e1dab5a60224dd (patch)
treeaf108aab63ebc81e1a7da0718a774f2274d0dc77 /lib
parent8e15b1894e416f804dd7c3a6a3cd143a628d240e (diff)
downloadperl-4823829628745e4bd7e9bfe988e1dab5a60224dd.tar.gz
Correct links to perlsyn and perlop
Diffstat (limited to 'lib')
-rw-r--r--lib/feature.pm2
-rw-r--r--lib/overload.pm4
2 files changed, 3 insertions, 3 deletions
diff --git a/lib/feature.pm b/lib/feature.pm
index 8dfb7aaf4b..9558f8c39e 100644
--- a/lib/feature.pm
+++ b/lib/feature.pm
@@ -124,7 +124,7 @@ This feature is available starting with Perl 5.10.
C<use feature 'switch'> tells the compiler to enable the Perl 6
given/when construct.
-See L<perlsyn/"Switch statements"> for details.
+See L<perlsyn/"Switch Statements"> for details.
This feature is available starting with Perl 5.10.
diff --git a/lib/overload.pm b/lib/overload.pm
index b3eac986f8..1b89043304 100644
--- a/lib/overload.pm
+++ b/lib/overload.pm
@@ -519,7 +519,7 @@ This overload was introduced in Perl 5.12.
The key C<"~~"> allows you to override the smart matching logic used by
the C<~~> operator and the switch construct (C<given>/C<when>). See
-L<perlsyn/Switch statements> and L<feature>.
+L<perlsyn/Switch Statements> and L<feature>.
Unusually, the overloaded implementation of the smart match operator
does not get full control of the smart match behaviour.
@@ -543,7 +543,7 @@ so you may see between one and three of these calls instead:
$obj->match(2,0);
$obj->match(3,0);
-Consult the match table in L<perlsyn/"Smart matching in detail"> for
+Consult the match table in L<perlop/"Smartmatch Operator"> for
details of when overloading is invoked.
=item * I<Dereferencing>