Browse Source

Correct xml test

gingerBill 3 năm trước cách đây
mục cha
commit
bc18310107
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  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)
 		}