diff options
author | Karl Williamson <khw@cpan.org> | 2016-09-15 09:06:39 -0600 |
---|---|---|
committer | Karl Williamson <khw@cpan.org> | 2016-09-25 22:24:19 -0600 |
commit | f21517291ac6c737159b2b06bd18b58a063ddb6b (patch) | |
tree | bded504127fc7d573fef620f1f868f46b132dbe9 /sv.c | |
parent | 3a57bd4d5e78d639b78eed9fcc27028720f8d326 (diff) | |
download | perl-f21517291ac6c737159b2b06bd18b58a063ddb6b.tar.gz |
perlapi: Minor clarifications to sv_utf8_decode
Diffstat (limited to 'sv.c')
-rw-r--r-- | sv.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 */ |