Skip to content

Commit cc65964

Browse files
Grinnzbook
authored andcommitted
fix manpage links for generated apidocs
1 parent 84a044b commit cc65964

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

handy.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -875,7 +875,7 @@ That is, each returns a boolean indicating whether the specified character is
875875
one of C<[A-Za-z0-9]>, analogous to C<m/[[:alnum:]]/>.
876876
877877
The C<C> suffix in the names was meant to indicate that they correspond to the
878-
C language L<C<isalnum(3)>>.
878+
C language C<L<isalnum(3)>>.
879879
880880
=for apidoc Am|bool|isASCII|UV ch
881881
=for apidoc_item ||isASCII_A|UV ch

locale.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4423,7 +4423,7 @@ S_native_querylocale_i(pTHX_ const locale_category_index cat_index)
44234423
/*
44244424
=for apidoc Perl_setlocale
44254425
4426-
This is an (almost) drop-in replacement for the system L<C<setlocale(3)>>,
4426+
This is an (almost) drop-in replacement for the system C<L<setlocale(3)>>,
44274427
taking the same parameters, and returning the same information, except that it
44284428
returns the correct underlying C<LC_NUMERIC> locale. Regular C<setlocale> will
44294429
instead return C<C> if the underlying locale has a non-dot decimal point
@@ -10826,7 +10826,7 @@ change the locale (though changing the locale is antisocial and dangerous on
1082610826
multi-threaded systems that don't have multi-thread safe locale operations.
1082710827
(See L<perllocale/Multi-threaded operation>).
1082810828
10829-
Using the libc L<C<setlocale(3)>> function should be avoided. Nevertheless,
10829+
Using the libc C<L<setlocale(3)>> function should be avoided. Nevertheless,
1083010830
certain non-Perl libraries called from XS, do call it, and their behavior may
1083110831
not be able to be changed. This function, along with
1083210832
C<L</switch_to_global_locale>>, can be used to get seamless behavior in these

numeric.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1516,7 +1516,7 @@ Perl_my_atof(pTHX_ const char* s)
15161516
=for apidoc my_atof
15171517
=for apidoc_item Atof
15181518
1519-
These each are L<C<atof>(3)>, but properly work with Perl locale handling,
1519+
These each are C<L<atof(3)>>, but properly work with Perl locale handling,
15201520
accepting a dot radix character always, but also the current locale's radix
15211521
character if and only if called from within the lexical scope of a Perl C<use
15221522
locale> statement.

0 commit comments

Comments
 (0)