From: Techcable Date: Mon, 14 Jul 2025 13:49:31 +0000 (-0700) Subject: Fix documentation for UTF8PROC_COMPOSE (#295) X-Git-Tag: archive/raspbian/2.11.3-2+rpi1^2~10^2^2~20^2 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=47deac4e5de8be5533ce3c5e33ca0811db9b75bf;p=utf8proc.git Fix documentation for UTF8PROC_COMPOSE (#295) The documentation for UTF8PROC_COMPOSE and UTF8PROC_DECOMPOSE options was the same. Fic --- diff --git a/utf8proc.h b/utf8proc.h index c83dc58..59e5389 100644 --- a/utf8proc.h +++ b/utf8proc.h @@ -150,7 +150,7 @@ typedef enum { UTF8PROC_STABLE = (1<<1), /** Compatibility decomposition (i.e. formatting information is lost). */ UTF8PROC_COMPAT = (1<<2), - /** Return a result with decomposed characters. */ + /** Return a result with composed characters. */ UTF8PROC_COMPOSE = (1<<3), /** Return a result with decomposed characters. */ UTF8PROC_DECOMPOSE = (1<<4),