From 20b4d5757f5152f6519826dbfd19006fdd064805 Mon Sep 17 00:00:00 2001 From: StudebakerGuy <> Date: Mon, 9 Mar 2026 19:25:00 -0400 Subject: [PATCH] Corrected type name Prop_List_Property --- core/unicode/tools/ucd/string_to.odin | 4 ++-- core/unicode/tools/ucd/ucd.odin | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/core/unicode/tools/ucd/string_to.odin b/core/unicode/tools/ucd/string_to.odin index 4f07d7e67..26093a3a9 100644 --- a/core/unicode/tools/ucd/string_to.odin +++ b/core/unicode/tools/ucd/string_to.odin @@ -77,7 +77,7 @@ string_to_proplist_property :: proc(str: string) -> (prop: Prop_List_Property) { case "Prepended_Concatenation_Mark": prop = .Prepended_Concatenation_Mark case "Regional_Indicator": prop = .Regional_Indicator case "Modifier_Combining_Mark": prop = .Modifier_Combining_Mark - case: prop = .Unknown_Property + case: prop = .Unknown } return } @@ -159,4 +159,4 @@ string_to_bidi_class :: proc "contextless" (str: string) -> (class: Bidi_Class) case: class = .Unknown } return -} \ No newline at end of file +} diff --git a/core/unicode/tools/ucd/ucd.odin b/core/unicode/tools/ucd/ucd.odin index 328fe06b8..165147bbd 100644 --- a/core/unicode/tools/ucd/ucd.odin +++ b/core/unicode/tools/ucd/ucd.odin @@ -237,7 +237,7 @@ Data contained in the Unicode fiel PropList.txt A `Prop_List` is the data contained in the Unicode Database (UCD) file `PropList.txt`. It is created with the procedure `load_property_list` and destroyed with the procedure `destroy_property_list`. */ -Prop_List :: [PropList_Property]Dynamic_Range +Prop_List :: [Prop_List_Property]Dynamic_Range /* This function destroys a `Prop_List` created by `load_property_list`. @@ -268,7 +268,7 @@ load_property_list :: proc(filename: string, allocator := context.allocator) -> } rr: Range_Rune - prop: PropList_Property + prop: Prop_List_Property i := 0 for _field in strings.split_iterator(&line, ";") { @@ -287,4 +287,4 @@ load_property_list :: proc(filename: string, allocator := context.allocator) -> } return -} \ No newline at end of file +}