diff options
author | Nicholas Clark <nick@ccl4.org> | 2005-10-30 17:14:08 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2005-10-30 17:14:08 +0000 |
commit | e3e4599ff44c1df42108810b2a899156903b540a (patch) | |
tree | 302bf40db4618855a9aa82f59171b12768dc6342 /utf8.c | |
parent | c78ff9799bf626c2fa25bf736a1f2793074eaa97 (diff) | |
download | perl-e3e4599ff44c1df42108810b2a899156903b540a.tar.gz |
Fix typos in comments.
p4raw-id: //depot/perl@25902
Diffstat (limited to 'utf8.c')
-rw-r--r-- | utf8.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -309,7 +309,7 @@ Perl_is_utf8_string(pTHX_ const U8 *s, STRLEN len) /* =for apidoc A|bool|is_utf8_string_loclen|const U8 *s|STRLEN len|const U8 **ep|const STRLEN *el -Like is_ut8_string() but stores the location of the failure (in the +Like is_utf8_string() but stores the location of the failure (in the case of "utf8ness failure") or the location s+len (in the case of "utf8ness success") in the C<ep>, and the number of UTF-8 encoded characters in the C<el>. @@ -370,7 +370,7 @@ Perl_is_utf8_string_loclen(pTHX_ const U8 *s, STRLEN len, const U8 **ep, STRLEN /* =for apidoc A|bool|is_utf8_string_loc|const U8 *s|STRLEN len|const U8 **ep|const STRLEN *el -Like is_ut8_string() but stores the location of the failure (in the +Like is_utf8_string() but stores the location of the failure (in the case of "utf8ness failure") or the location s+len (in the case of "utf8ness success") in the C<ep>. |