From: Pavel Charvat Date: Thu, 6 Nov 2008 16:37:30 +0000 (+0100) Subject: Doc: Fixed a typo. X-Git-Tag: holmes-import~185 X-Git-Url: http://mj.ucw.cz/gitweb/?a=commitdiff_plain;ds=sidebyside;h=b904ef3cdff12ad7be9bd307a6e86b2594728020;p=libucw.git Doc: Fixed a typo. --- diff --git a/ucw/chartype.h b/ucw/chartype.h index 930bf90e..1770709c 100644 --- a/ucw/chartype.h +++ b/ucw/chartype.h @@ -14,7 +14,7 @@ * We define our own routines to classify 8-bit characters (based on US-ASCII charset). * This way we bypass most possible problems with different compilation environments. * - * All functions and macros accept any numeric parameters and if it is necessary, they simply ignore higher bits. + * All functions and macros accept any numbers and if it is necessary, they simply ignore higher bits. * It does not matter whether a parameter is signed or unsigned. ***/ diff --git a/ucw/unicode.h b/ucw/unicode.h index 74416c6d..2bbbc517 100644 --- a/ucw/unicode.h +++ b/ucw/unicode.h @@ -348,7 +348,7 @@ static inline uns unicode_sanitize_char(uns u) /** * Count the number of Unicode character in a zero-terminated UTF-8 string. - * Returned value for corrupted encoding is undefined, but is never greater than `strlen(str)`. + * Returned value for corrupted encoding is undefined, but is never greater than strlen(). **/ uns utf8_strlen(const byte *str);