aboutsummaryrefslogtreecommitdiff
path: root/core/encoding/entity/example
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/encoding/entity/example
parentc90b7c38f1a54e1f6bc144bea76b976f7c126644 (diff)
Correct naming in tests
Diffstat (limited to 'core/encoding/entity/example')
-rw-r--r--core/encoding/entity/example/entity_example.odin2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/encoding/entity/example/entity_example.odin b/core/encoding/entity/example/entity_example.odin
index 6fc377f9d..6301eb263 100644
--- a/core/encoding/entity/example/entity_example.odin
+++ b/core/encoding/entity/example/entity_example.odin
@@ -8,7 +8,7 @@ import "core:time"
doc_print :: proc(doc: ^xml.Document) {
buf: strings.Builder
- defer strings.destroy_builder(&buf)
+ defer strings.builder_destroy(&buf)
w := strings.to_writer(&buf)
xml.print(w, doc)