summaryrefslogtreecommitdiff
path: root/sv.c
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2016-09-15 09:06:39 -0600
committerKarl Williamson <khw@cpan.org>2016-09-25 22:24:19 -0600
commitf21517291ac6c737159b2b06bd18b58a063ddb6b (patch)
treebded504127fc7d573fef620f1f868f46b132dbe9 /sv.c
parent3a57bd4d5e78d639b78eed9fcc27028720f8d326 (diff)
downloadperl-f21517291ac6c737159b2b06bd18b58a063ddb6b.tar.gz
perlapi: Minor clarifications to sv_utf8_decode
Diffstat (limited to 'sv.c')
-rw-r--r--sv.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sv.c b/sv.c
index 3cf52d9e81..850c727f5e 100644
--- a/sv.c
+++ b/sv.c
@@ -3749,11 +3749,11 @@ Perl_sv_utf8_encode(pTHX_ SV *const sv)
/*
=for apidoc sv_utf8_decode
-If the PV of the SV is an octet sequence in UTF-8
+If the PV of the SV is an octet sequence in Perl's extended UTF-8
and contains a multiple-byte character, the C<SvUTF8> flag is turned on
so that it looks like a character. If the PV contains only single-byte
characters, the C<SvUTF8> flag stays off.
-Scans PV for validity and returns false if the PV is invalid UTF-8.
+Scans PV for validity and returns FALSE if the PV is invalid UTF-8.
=cut
*/