aboutsummaryrefslogtreecommitdiff
path: root/core/unicode
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2022-07-11 11:55:49 +0100
committergingerBill <bill@gingerbill.org>2022-07-11 11:55:49 +0100
commitae9d540c1c77bfc84a4fff964e218aebcb0c2680 (patch)
tree7a80557e7727441c7b6a3ee12548c5b459289778 /core/unicode
parentc90b7c38f1a54e1f6bc144bea76b976f7c126644 (diff)
Correct naming in tests
Diffstat (limited to 'core/unicode')
-rw-r--r--core/unicode/tools/generate_entity_table.odin2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/unicode/tools/generate_entity_table.odin b/core/unicode/tools/generate_entity_table.odin
index 075ec1cca..328ba9091 100644
--- a/core/unicode/tools/generate_entity_table.odin
+++ b/core/unicode/tools/generate_entity_table.odin
@@ -45,7 +45,7 @@ generate_encoding_entity_table :: proc() {
printf("\"%v\" loaded and parsed.\n", filename)
generated_buf: strings.Builder
- defer strings.destroy_builder(&generated_buf)
+ defer strings.builder_destroy(&generated_buf)
w := strings.to_writer(&generated_buf)
charlist, charlist_ok := xml.find_child_by_ident(doc.root, "charlist")