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/example | |
| parent | 2dd181e66313ac3a017c7133084d482d0ed2e205 (diff) | |
Minor name changes within `core:encoding/xml` for consistency
Diffstat (limited to 'core/encoding/xml/example')
| -rw-r--r-- | core/encoding/xml/example/xml_example.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/encoding/xml/example/xml_example.odin b/core/encoding/xml/example/xml_example.odin index cadfcfb43..f7e74840e 100644 --- a/core/encoding/xml/example/xml_example.odin +++ b/core/encoding/xml/example/xml_example.odin @@ -35,7 +35,7 @@ example :: proc() { times[round] = time.tick_diff(start, end) } - fastest := time.Duration(max(i64)) + fastest := max(time.Duration) slowest := time.Duration(0) total := time.Duration(0) |