diff options
author | Father Chrysostomos <sprout@cpan.org> | 2012-01-05 20:18:04 -0800 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2012-01-05 20:28:20 -0800 |
commit | 4823829628745e4bd7e9bfe988e1dab5a60224dd (patch) | |
tree | af108aab63ebc81e1a7da0718a774f2274d0dc77 /pod | |
parent | 8e15b1894e416f804dd7c3a6a3cd143a628d240e (diff) | |
download | perl-4823829628745e4bd7e9bfe988e1dab5a60224dd.tar.gz |
Correct links to perlsyn and perlop
Diffstat (limited to 'pod')
-rw-r--r-- | pod/perlfunc.pod | 8 | ||||
-rw-r--r-- | pod/perlintro.pod | 2 | ||||
-rw-r--r-- | pod/perlsyn.pod | 2 | ||||
-rw-r--r-- | pod/perltrap.pod | 2 |
4 files changed, 7 insertions, 7 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> diff --git a/pod/perlintro.pod b/pod/perlintro.pod index 61f0b5401d..d14c6d58cd 100644 --- a/pod/perlintro.pod +++ b/pod/perlintro.pod @@ -328,7 +328,7 @@ running the program. Using C<strict> is highly recommended. Perl has most of the usual conditional and looping constructs. As of Perl 5.10, it even has a case/switch statement (spelled C<given>/C<when>). See -L<perlsyn/"Switch statements"> for more details. +L<perlsyn/"Switch Statements"> for more details. The conditions can be any Perl expression. See the list of operators in the next section for information on comparison and boolean logic operators, diff --git a/pod/perlsyn.pod b/pod/perlsyn.pod index 6fc9dd6d11..88e2ec1233 100644 --- a/pod/perlsyn.pod +++ b/pod/perlsyn.pod @@ -220,7 +220,7 @@ a C<next> from inside a C<foreach> and C<break> from inside a C<given>. Under the current implementation, the C<foreach> loop can be anywhere within the C<when> modifier's dynamic scope, but must be within the C<given> block's lexical scope. This restricted may -be relaxed in a future release. See L<"Switch statements"> below. +be relaxed in a future release. See L<"Switch Statements"> below. =head2 Compound Statements X<statement, compound> X<block> X<bracket, curly> X<curly bracket> X<brace> diff --git a/pod/perltrap.pod b/pod/perltrap.pod index 99e25c8d49..e4fbb23a53 100644 --- a/pod/perltrap.pod +++ b/pod/perltrap.pod @@ -171,7 +171,7 @@ C<do { } while> construct. See L<perlsyn/"Loop Control">. =item * The switch statement is called C<given/when> and only available in -perl 5.10 or newer. See L<perlsyn/"Switch statements">. +perl 5.10 or newer. See L<perlsyn/"Switch Statements">. =item * |