From 24195dca7e574f54e0ef1177a61df0ca1c00eeb0 Mon Sep 17 00:00:00 2001 From: Thomas Voss Date: Tue, 16 Apr 2024 10:25:44 +0200 Subject: Fix comment typo --- include/unicode/string.h | 4 ++-- 1 file 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 ‘ß’ */ }; -- cgit v1.2.3