Browse Source

Fix filename in example

Kostas Tsiligkiris 1 year ago
parent
commit
a86cfa6e97
1 changed files with 2 additions and 2 deletions
  1. 2 2
      core/encoding/xml/example/xml_example.odin

+ 2 - 2
core/encoding/xml/example/xml_example.odin

@@ -20,7 +20,7 @@ example :: proc() {
 		xml.destroy(docs[round])
 		xml.destroy(docs[round])
 	}
 	}
 
 
-	DOC :: #load("../../../../tests/core/assets/XML/unicode.xml")
+	DOC :: #load("../../../../tests/core/assets/XML/utf8.xml")
 	input := DOC
 	input := DOC
 
 
 	for round in 0..<N {
 	for round in 0..<N {
@@ -109,4 +109,4 @@ main :: proc() {
 		}
 		}
 	}
 	}
 	println("Done and cleaned up!")
 	println("Done and cleaned up!")
-}
+}