diff options
| author | gingerBill <bill@gingerbill.org> | 2022-05-12 15:57:03 +0100 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2022-05-12 15:57:03 +0100 |
| commit | d224679619e4b8b41c62d3cf1909ea05a39f569e (patch) | |
| tree | 42c011cc2819f042ec20b675a296a54f8736bf42 /core/encoding/xml/debug_print.odin | |
| parent | 2dd181e66313ac3a017c7133084d482d0ed2e205 (diff) | |
Minor name changes within `core:encoding/xml` for consistency
Diffstat (limited to 'core/encoding/xml/debug_print.odin')
| -rw-r--r-- | core/encoding/xml/debug_print.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/encoding/xml/debug_print.odin b/core/encoding/xml/debug_print.odin index 7c20ac123..e9a1cb160 100644 --- a/core/encoding/xml/debug_print.odin +++ b/core/encoding/xml/debug_print.odin @@ -23,7 +23,7 @@ print :: proc(writer: io.Writer, doc: ^Document) -> (written: int, err: io.Error 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) } |