Skip to content

Commit b322ee3

Browse files
Grinnzbook
authored andcommitted
POSIX: fix man page links
C<> inside the L<> causes the links to be interpreted as module links rather than the intended links to manpages.
1 parent f8acc2a commit b322ee3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

ext/POSIX/lib/POSIX.pod

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1132,7 +1132,7 @@ Not implemented. C<malloc()> is C-specific. Perl does memory management transp
11321132

11331133
This is the same as the C function C<mblen()> on unthreaded perls. On
11341134
threaded perls, it transparently (almost) substitutes the more
1135-
thread-safe L<C<mbrlen>(3)>, if available, instead of C<mblen>.
1135+
thread-safe C<L<mbrlen(3)>>, if available, instead of C<mblen>.
11361136

11371137
Core Perl does not have any support for wide and multibyte locales,
11381138
except Unicode UTF-8 locales. This function, in conjunction with
@@ -1161,7 +1161,7 @@ actual length of the first parameter string.
11611161

11621162
This is the same as the C function C<mbtowc()> on unthreaded perls. On
11631163
threaded perls, it transparently (almost) substitutes the more
1164-
thread-safe L<C<mbrtowc>(3)>, if available, instead of C<mbtowc>.
1164+
thread-safe C<L<mbrtowc(3)>>, if available, instead of C<mbtowc>.
11651165

11661166
Core Perl does not have any support for wide and multibyte locales,
11671167
except Unicode UTF-8 locales. This function, in conjunction with
@@ -2265,7 +2265,7 @@ See L</mblen>.
22652265

22662266
This is the same as the C function C<wctomb()> on unthreaded perls. On
22672267
threaded perls, it transparently (almost) substitutes the more
2268-
thread-safe L<C<wcrtomb>(3)>, if available, instead of C<wctomb>.
2268+
thread-safe C<L<wcrtomb(3)>>, if available, instead of C<wctomb>.
22692269

22702270
Core Perl does not have any support for wide and multibyte locales,
22712271
except Unicode UTF-8 locales. This function, in conjunction with

0 commit comments

Comments
 (0)