diff options
author | Karl Williamson <khw@cpan.org> | 2016-04-22 13:00:22 -0600 |
---|---|---|
committer | Karl Williamson <khw@cpan.org> | 2016-04-22 13:08:10 -0600 |
commit | a95b3d6ada665e29ff33e3063306726e5ec40338 (patch) | |
tree | 07b90150d67aff5172c2681c07da6b74e0ae955a /pod | |
parent | 319b236e2ed58e5be687a549dd0b94342cacd751 (diff) | |
download | perl-a95b3d6ada665e29ff33e3063306726e5ec40338.tar.gz |
Fix some pod errors
These were discovered while testing the Pod::Checker that is intended to
be used in 5.25.
Diffstat (limited to 'pod')
-rw-r--r-- | pod/perlguts.pod | 2 | ||||
-rw-r--r-- | pod/perlop.pod | 4 | ||||
-rw-r--r-- | pod/perlrebackslash.pod | 2 | ||||
-rw-r--r-- | pod/perlvar.pod | 2 |
4 files changed, 5 insertions, 5 deletions
diff --git a/pod/perlguts.pod b/pod/perlguts.pod index ba6cd16692..42ebb8df22 100644 --- a/pod/perlguts.pod +++ b/pod/perlguts.pod @@ -2742,7 +2742,7 @@ source, like this: =for apidoc sv_setiv Copies an integer into the given SV. Does not handle 'set' magic. See - C<sv_setiv_mg>. + L<perlapi/sv_setiv_mg>. =cut */ diff --git a/pod/perlop.pod b/pod/perlop.pod index 17d24bb4f7..9b1319a7a6 100644 --- a/pod/perlop.pod +++ b/pod/perlop.pod @@ -258,7 +258,7 @@ produces a warning unless you use S<C<no warnings 'experimental::bitwise'>>. Unary C<"+"> has no effect whatsoever, even on strings. It is useful syntactically for separating a function name from a parenthesized expression that would otherwise be interpreted as the complete list of function -arguments. (See examples above under L<Terms and List Operators (Leftward)>.) +arguments. (See examples above under L</Terms and List Operators (Leftward)>.) X<+> Unary C<"\"> creates a reference to whatever follows it. See L<perlreftut> @@ -1272,7 +1272,7 @@ in which case you might as well just use the more customary C<"||"> operator: open(HANDLE, "< :utf8", "filename") || die "Can't open: $!\n"; -See also discussion of list operators in L<Terms and List Operators (Leftward)>. +See also discussion of list operators in L</Terms and List Operators (Leftward)>. =head2 Logical Not X<operator, logical, not> X<not> diff --git a/pod/perlrebackslash.pod b/pod/perlrebackslash.pod index f27da1fc3c..3df9bd2e9d 100644 --- a/pod/perlrebackslash.pod +++ b/pod/perlrebackslash.pod @@ -537,7 +537,7 @@ C<\b> when not immediately followed by a C<"{"> matches at any place between a word (something matched by C<\w>) and a non-word character (C<\W>); C<\B> when not immediately followed by a C<"{"> matches at any place between characters where C<\b> doesn't match. To get better -word matching of natural language text, see L<\b{wb}> below. +word matching of natural language text, see L</\b{wb}> below. C<\b> and C<\B> assume there's a non-word character before the beginning and after diff --git a/pod/perlvar.pod b/pod/perlvar.pod index 132c15ec29..1821b95d1c 100644 --- a/pod/perlvar.pod +++ b/pod/perlvar.pod @@ -1720,7 +1720,7 @@ from within the Win32 API. Most Win32-specific code will report errors via C<$^E>. ANSI C and Unix-like calls set C<errno> and so most portable Perl code will report errors via C<$!>. -Caveats mentioned in the description of C<L<$!>> generally apply to +Caveats mentioned in the description of C<L</$!>> generally apply to C<$^E>, also. This variable was added in Perl 5.003. |