Skip to content

Commit 7f46fca

Browse files
authored
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 3862d0f commit 7f46fca

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ext/POSIX/lib/POSIX.pod

Lines changed: 2 additions & 2 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

0 commit comments

Comments
 (0)