diff options
| author | Kostas Tsiligkiris <ktsiligkiris@outlook.com> | 2024-01-17 21:38:33 +0200 |
|---|---|---|
| committer | Kostas Tsiligkiris <ktsiligkiris@outlook.com> | 2024-01-17 21:38:33 +0200 |
| commit | a86cfa6e979f7b8d672561d3c177086f85ea2478 (patch) | |
| tree | f539395b5ce55bd5de1b1d12d56a876861d12e2e /core/encoding/xml/example | |
| parent | 02c2aff41b92fa8b8a19c0b6599f02549178ca1a (diff) | |
Fix filename in example
Diffstat (limited to 'core/encoding/xml/example')
| -rw-r--r-- | core/encoding/xml/example/xml_example.odin | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/encoding/xml/example/xml_example.odin b/core/encoding/xml/example/xml_example.odin index aebb8d0ea..9648143db 100644 --- a/core/encoding/xml/example/xml_example.odin +++ b/core/encoding/xml/example/xml_example.odin @@ -20,7 +20,7 @@ example :: proc() { xml.destroy(docs[round]) } - DOC :: #load("../../../../tests/core/assets/XML/unicode.xml") + DOC :: #load("../../../../tests/core/assets/XML/utf8.xml") input := DOC for round in 0..<N { @@ -109,4 +109,4 @@ main :: proc() { } } println("Done and cleaned up!") -}
\ No newline at end of file +} |