summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteven G. Johnson <stevenj@mit.edu>2016-11-29 13:49:03 -0500
committerSteven G. Johnson <stevenj@mit.edu>2016-11-29 13:49:03 -0500
commitf5567f306a969881524c6ec0c9c724fc493d155d (patch)
tree2ac1b3ddbb605cc1b52adc5634852870f836ff28
parent70bbed8626e902d8c1e2b8277b0c61efb8a460bb (diff)
downloadlibutf8proc-f5567f306a969881524c6ec0c9c724fc493d155d.tar.gz
libutf8proc-f5567f306a969881524c6ec0c9c724fc493d155d.tar.bz2
typo in docstrings
-rw-r--r--utf8proc.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/utf8proc.h b/utf8proc.h
index a81ab75..9d1f782 100644
--- a/utf8proc.h
+++ b/utf8proc.h
@@ -595,7 +595,7 @@ UTF8PROC_DLLEXPORT utf8proc_int32_t utf8proc_totitle(utf8proc_int32_t c);
* Given a codepoint, return a character width analogous to `wcwidth(codepoint)`,
* except that a width of 0 is returned for non-printable codepoints
* instead of -1 as in `wcwidth`.
- *
+ *
* @note
* If you want to check for particular types of non-printable characters,
* (analogous to `isprint` or `iscntrl`), use @ref utf8proc_category. */
@@ -647,9 +647,9 @@ UTF8PROC_DLLEXPORT utf8proc_ssize_t utf8proc_map(
UTF8PROC_DLLEXPORT utf8proc_uint8_t *utf8proc_NFD(const utf8proc_uint8_t *str);
/** NFC normalization (@ref UTF8PROC_COMPOSE). */
UTF8PROC_DLLEXPORT utf8proc_uint8_t *utf8proc_NFC(const utf8proc_uint8_t *str);
-/** NFD normalization (@ref UTF8PROC_DECOMPOSE and @ref UTF8PROC_COMPAT). */
+/** NFKD normalization (@ref UTF8PROC_DECOMPOSE and @ref UTF8PROC_COMPAT). */
UTF8PROC_DLLEXPORT utf8proc_uint8_t *utf8proc_NFKD(const utf8proc_uint8_t *str);
-/** NFD normalization (@ref UTF8PROC_COMPOSE and @ref UTF8PROC_COMPAT). */
+/** NFKC normalization (@ref UTF8PROC_COMPOSE and @ref UTF8PROC_COMPAT). */
UTF8PROC_DLLEXPORT utf8proc_uint8_t *utf8proc_NFKC(const utf8proc_uint8_t *str);
/** @} */
@@ -658,4 +658,3 @@ UTF8PROC_DLLEXPORT utf8proc_uint8_t *utf8proc_NFKC(const utf8proc_uint8_t *str);
#endif
#endif
-