@@ -2053,7 +2053,7 @@ C<L</is_strict_utf8_string>> (and kin); and if C<flags> is
20532053C<UTF8_DISALLOW_ILLEGAL_C9_INTERCHANGE>, they give the same results as
20542054C<L</is_c9strict_utf8_string>> (and kin). Otherwise C<flags> may be any
20552055combination of the C<UTF8_DISALLOW_I<foo>> flags understood by
2056- C<L</utf8n_to_uvchr >>, with the same meanings.
2056+ C<L</utf8_to_uv >>, with the same meanings.
20572057
20582058It's better to use one of the non-C<_flags> functions if they give you the
20592059desired strictness, as those have a better chance of being inlined by the C
@@ -2306,7 +2306,7 @@ as C<L</isSTRICT_UTF8_CHAR>>;
23062306and if C<flags> is C<UTF8_DISALLOW_ILLEGAL_C9_INTERCHANGE>, this gives
23072307the same results as C<L</isC9_STRICT_UTF8_CHAR>>.
23082308Otherwise C<flags> may be any combination of the C<UTF8_DISALLOW_I<foo>> flags
2309- understood by C<L</utf8n_to_uvchr >>, with the same meanings.
2309+ understood by C<L</utf8_to_uv >>, with the same meanings.
23102310
23112311The three alternative macros are for the most commonly needed validations; they
23122312are likely to run somewhat faster than this more general one, as they can be
@@ -2931,7 +2931,7 @@ C<is_utf8_valid_partial_char_flags> when the latter is called with a zero
29312931C<flags> parameter. This parameter is used to restrict the classes of code
29322932points that are considered to be valid. When zero, Perl's extended UTF-8 is
29332933used. Otherwise C<flags> can be any combination of the C<UTF8_DISALLOW_I<foo>>
2934- flags accepted by C<L</utf8n_to_uvchr >>. If there is any sequence of bytes
2934+ flags accepted by C<L</utf8_to_uv >>. If there is any sequence of bytes
29352935that can complete the input partial character in such a way that a
29362936non-prohibited character is formed, the function returns TRUE; otherwise FALSE.
29372937Non-character code points cannot be determined based on partial character
@@ -3003,7 +3003,7 @@ complete code point, this will return TRUE anyway, provided that
30033003C<L</is_utf8_valid_partial_char_flags>> returns TRUE for them.
30043004
30053005C<flags> can be zero or any combination of the C<UTF8_DISALLOW_I<foo>> flags
3006- accepted by C<L</utf8n_to_uvchr >>, and with the same meanings.
3006+ accepted by C<L</utf8_to_uv >>, and with the same meanings.
30073007
30083008The functions differ from C<L</is_utf8_string_flags>> only in that the latter
30093009returns FALSE if the final few bytes of the string don't form a complete code
0 commit comments