summaryrefslogtreecommitdiff
path: root/pod/perlfunc.pod
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 /pod/perlfunc.pod
parent8e15b1894e416f804dd7c3a6a3cd143a628d240e (diff)
downloadperl-4823829628745e4bd7e9bfe988e1dab5a60224dd.tar.gz
Correct links to perlsyn and perlop
Diffstat (limited to 'pod/perlfunc.pod')
-rw-r--r--pod/perlfunc.pod8
1 files changed, 4 insertions, 4 deletions
diff --git a/pod/perlfunc.pod b/pod/perlfunc.pod
index 4ff1cc7ee3..cefccc3b05 100644
--- a/pod/perlfunc.pod
+++ b/pod/perlfunc.pod
@@ -175,7 +175,7 @@ C<break>, C<continue>, C<default>, C<given>, C<when>
Except for C<continue>, these are available only if you enable the
C<"switch"> feature or use the C<CORE::> prefix.
-See L<feature> and L<perlsyn/"Switch statements">.
+See L<feature> and L<perlsyn/"Switch Statements">.
Alternately, include a C<use v5.10> or later to the current scope. In Perl
5.14 and earlier, C<continue> required the C<"switch"> feature, like the
other keywords.
@@ -1028,7 +1028,7 @@ falls through the current C<when> or C<default> block instead of iterating
a dynamically enclosing C<foreach> or exiting a lexically enclosing C<given>.
In Perl 5.14 and earlier, this form of C<continue> was
only available when the C<"switch"> feature was enabled.
-See L<feature> and L<perlsyn/"Switch statements"> for more
+See L<feature> and L<perlsyn/"Switch Statements"> for more
information.
=item cos EXPR
@@ -2569,7 +2569,7 @@ Only available after Perl 5.10. For example:
}
}
-See L<perlsyn/"Switch statements"> for detailed information.
+See L<perlsyn/"Switch Statements"> for detailed information.
=item glob EXPR
X<glob> X<wildcard> X<filename, expansion> X<expand>
@@ -8381,7 +8381,7 @@ Here are three examples:
}
}
-See L<perlsyn/"Switch statements"> for detailed information.
+See L<perlsyn/"Switch Statements"> for detailed information.
=item write FILEHANDLE
X<write>