Skip to content

Commit a95b3d6

Browse files
committedApr 22, 2016
Fix some pod errors
These were discovered while testing the Pod::Checker that is intended to be used in 5.25.
1 parent 319b236 commit a95b3d6

File tree

7 files changed

+19
-19
lines changed

7 files changed

+19
-19
lines changed
 

‎INSTALL

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1922,11 +1922,11 @@ specify which target environment to use, as well as C<ar> and friends:
19221922

19231923
Additionally, a cross-compilation toolchain will usually install it's own
19241924
logical system root somewhere -- that is, it'll create a directory
1925-
somewhere which includes subdirectories like 'include' or 'lib'. For
1926-
example, you may end up with C</skiff/local/arm-linux>, where
1927-
C</skiff/local/arm-linux/bin> holds the binaries for cross-compilation,
1928-
C</skiff/local/arm-linux/include> has the headers, and
1929-
C</skiff/local/arm-linux/lib> has the library files.
1925+
somewhere which includes subdirectories like C<'include'> or C<'lib'>. For
1926+
example, you may end up with F</skiff/local/arm-linux>, where
1927+
F</skiff/local/arm-linux/bin> holds the binaries for cross-compilation,
1928+
F</skiff/local/arm-linux/include> has the headers, and
1929+
F</skiff/local/arm-linux/lib> has the library files.
19301930
If this is the case, and you are using a compiler that understands
19311931
C<--sysroot>, like gcc or clang, you'll want to specify the
19321932
C<-Dsysroot> option for Configure:

‎Porting/release_managers_guide.pod

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1483,19 +1483,19 @@ to ensure that the tarballs are available on the website.
14831483

14841484
=item *
14851485

1486-
Check C</src> on CPAN (on a fast mirror) to ensure that links to
1487-
the new tarballs have appeared: There should be links in C</src/5.0>
1486+
Check F</src> on CPAN (on a fast mirror) to ensure that links to
1487+
the new tarballs have appeared: There should be links in F</src/5.0>
14881488
(which is accumulating all new versions), and (for BLEAD-FINAL and
1489-
MAINT only) an appropriate mention in C</src/README.html> (which describes
1489+
MAINT only) an appropriate mention in F</src/README.html> (which describes
14901490
the latest versions in each stable branch, with links).
14911491

1492-
The C</src/5.0> links should appear automatically, some hours after upload.
1493-
If they don't, or the C</src> description is inadequate,
1492+
The F</src/5.0> links should appear automatically, some hours after upload.
1493+
If they don't, or the F</src> description is inadequate,
14941494
ask Ask <ask@perl.org>.
14951495

14961496
=item *
14971497

1498-
Check L<http://www.cpan.org/src/> to ensure that the C</src> updates
1498+
Check L<http://www.cpan.org/src/> to ensure that the F</src> updates
14991499
have been correctly mirrored to the website.
15001500
If they haven't, ask Ask <ask@perl.org>.
15011501

‎README.synology

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -189,12 +189,12 @@ commit 7a8f1212e5482613c8a5b0402528e3105b26ff24.
189189

190190
=over 4
191191

192-
=item C<ext/DynaLoader/t/DynaLoader.t>
192+
=item F<ext/DynaLoader/t/DynaLoader.t>
193193

194194
One subtest fails due to the uncommon structure of the Synology file
195-
system. The file C</lib/glibc.so> is missing.
195+
system. The file F</lib/glibc.so> is missing.
196196

197-
B<WARNING:> Do not symlink C</lib/glibc.so.6> to C</lib/glibc.so> or
197+
B<WARNING:> Do not symlink F</lib/glibc.so.6> to F</lib/glibc.so> or
198198
some system components will start to fail.
199199

200200
=back

‎pod/perlguts.pod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2742,7 +2742,7 @@ source, like this:
27422742
=for apidoc sv_setiv
27432743

27442744
Copies an integer into the given SV. Does not handle 'set' magic. See
2745-
C<sv_setiv_mg>.
2745+
L<perlapi/sv_setiv_mg>.
27462746

27472747
=cut
27482748
*/

‎pod/perlop.pod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ produces a warning unless you use S<C<no warnings 'experimental::bitwise'>>.
258258
Unary C<"+"> has no effect whatsoever, even on strings. It is useful
259259
syntactically for separating a function name from a parenthesized expression
260260
that would otherwise be interpreted as the complete list of function
261-
arguments. (See examples above under L<Terms and List Operators (Leftward)>.)
261+
arguments. (See examples above under L</Terms and List Operators (Leftward)>.)
262262
X<+>
263263

264264
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:
12721272

12731273
open(HANDLE, "< :utf8", "filename") || die "Can't open: $!\n";
12741274

1275-
See also discussion of list operators in L<Terms and List Operators (Leftward)>.
1275+
See also discussion of list operators in L</Terms and List Operators (Leftward)>.
12761276

12771277
=head2 Logical Not
12781278
X<operator, logical, not> X<not>

‎pod/perlrebackslash.pod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -537,7 +537,7 @@ C<\b> when not immediately followed by a C<"{"> matches at any place
537537
between a word (something matched by C<\w>) and a non-word character
538538
(C<\W>); C<\B> when not immediately followed by a C<"{"> matches at any
539539
place between characters where C<\b> doesn't match. To get better
540-
word matching of natural language text, see L<\b{wb}> below.
540+
word matching of natural language text, see L</\b{wb}> below.
541541

542542
C<\b>
543543
and C<\B> assume there's a non-word character before the beginning and after

‎pod/perlvar.pod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1720,7 +1720,7 @@ from within the Win32 API. Most Win32-specific code will report errors
17201720
via C<$^E>. ANSI C and Unix-like calls set C<errno> and so most
17211721
portable Perl code will report errors via C<$!>.
17221722

1723-
Caveats mentioned in the description of C<L<$!>> generally apply to
1723+
Caveats mentioned in the description of C<L</$!>> generally apply to
17241724
C<$^E>, also.
17251725

17261726
This variable was added in Perl 5.003.

0 commit comments

Comments
 (0)
Please sign in to comment.