Browse Source

Correct xml test

gingerBill 3 years ago
parent
commit
bc18310107
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tests/core/encoding/xml/test_core_xml.odin

+ 1 - 1
tests/core/encoding/xml/test_core_xml.odin

@@ -218,7 +218,7 @@ doc_to_string :: proc(doc: ^xml.Document) -> (result: string) {
 
 		written += wprintf(writer, "[XML Prolog]\n")
 
-		for attr in doc.prolog {
+		for attr in doc.prologue {
 			written += wprintf(writer, "\t%v: %v\n", attr.key, attr.val)
 		}