diff options
author | Thomas Voss <mail@thomasvoss.com> | 2024-04-16 10:25:44 +0200 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2024-04-16 10:25:44 +0200 |
commit | 24195dca7e574f54e0ef1177a61df0ca1c00eeb0 (patch) | |
tree | 25da09c00f9824d2c696ae39995ec9a79d245659 /include/unicode | |
parent | fcc4316b28ecc353595ec3efd98b101494a0d2ae (diff) |
Fix comment typo
Diffstat (limited to 'include/unicode')
-rw-r--r-- | include/unicode/string.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/unicode/string.h b/include/unicode/string.h index 3a8c77a..96fef13 100644 --- a/include/unicode/string.h +++ b/include/unicode/string.h @@ -9,8 +9,8 @@ /* clang-format off */ enum [[clang::__flag_enum__]] caseflags { - CF_LANG_AZ = 1 << 0, /* Azeri; alias for UF_LANG_TR */ - CF_LANG_TR = 1 << 0, /* Turkish; alias for UF_LANG_AZ */ + CF_LANG_AZ = 1 << 0, /* Azeri; alias for CF_LANG_TR */ + CF_LANG_TR = 1 << 0, /* Turkish; alias for CF_LANG_AZ */ CF_LANG_LT = 1 << 1, /* Lithuanian */ CF_ẞ = 1 << 2, /* Use ‘ẞ’ as the uppercase of ‘ß’ */ }; |