@@ -539,16 +539,16 @@ If there is a possibility of malformed input, use instead:
539539
540540=over
541541
542- =item L</C< UTF8_SAFE_SKIP>> if you know the maximum ending pointer in the
542+ =item C< L</UTF8_SAFE_SKIP>> if you know the maximum ending pointer in the
543543buffer pointed to by C<s>; or
544544
545- =item L</C< UTF8_CHK_SKIP>> if you don't know it.
545+ =item C< L</UTF8_CHK_SKIP>> if you don't know it.
546546
547547=back
548548
549549It is better to restructure your code so the end pointer is passed down so that
550550you know what it actually is at the point of this call, but if that isn't
551- possible, L</C< UTF8_CHK_SKIP>> can minimize the chance of accessing beyond the end
551+ possible, C< L</UTF8_CHK_SKIP>> can minimize the chance of accessing beyond the end
552552of the input buffer.
553553
554554=cut
@@ -557,7 +557,7 @@ of the input buffer.
557557
558558/*
559559=for apidoc Am|STRLEN|UTF8_SKIP|char* s
560- This is a synonym for L</C< UTF8SKIP>>
560+ This is a synonym for C< L</UTF8SKIP>>
561561
562562=cut
563563*/
@@ -567,8 +567,8 @@ This is a synonym for L</C<UTF8SKIP>>
567567/*
568568=for apidoc Am|STRLEN|UTF8_CHK_SKIP|char* s
569569
570- This is a safer version of L</C< UTF8SKIP>>, but still not as safe as
571- L</C< UTF8_SAFE_SKIP>>. This version doesn't blindly assume that the input
570+ This is a safer version of C< L</UTF8SKIP>>, but still not as safe as
571+ C< L</UTF8_SAFE_SKIP>>. This version doesn't blindly assume that the input
572572string pointed to by C<s> is well-formed, but verifies that there isn't a NUL
573573terminating character before the expected end of the next character in C<s>.
574574The length C<UTF8_CHK_SKIP> returns stops just before any such NUL.
@@ -579,7 +579,7 @@ beyond the end of the input buffer, even if it is malformed UTF-8.
579579
580580This macro is intended to be used by XS modules where the inputs could be
581581malformed, and it isn't feasible to restructure to use the safer
582- L</C< UTF8_SAFE_SKIP>>, for example when interfacing with a C library.
582+ C< L</UTF8_SAFE_SKIP>>, for example when interfacing with a C library.
583583
584584=cut
585585*/
0 commit comments