diff options
| author | gingerBill <gingerBill@users.noreply.github.com> | 2025-12-01 11:53:08 +0000 |
|---|---|---|
| committer | gingerBill <gingerBill@users.noreply.github.com> | 2025-12-01 11:53:08 +0000 |
| commit | 3771ff7b123bf1debe2da2886d833791ee890b39 (patch) | |
| tree | 69cc14a85ef5cb47ede1280df76f6206aa934d00 /core/encoding/xml | |
| parent | 9f80d697027a41a9c36b8eb42d9c98f9b7fcbe2c (diff) | |
| parent | e72aad983bb683858a1aee935b2956ced40f69f8 (diff) | |
Merge branch 'master' into vendor/curl
Diffstat (limited to 'core/encoding/xml')
| -rw-r--r-- | core/encoding/xml/debug_print.odin | 2 | ||||
| -rw-r--r-- | core/encoding/xml/helpers.odin | 2 | ||||
| -rw-r--r-- | core/encoding/xml/tokenizer.odin | 2 | ||||
| -rw-r--r-- | core/encoding/xml/xml_reader.odin | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/core/encoding/xml/debug_print.odin b/core/encoding/xml/debug_print.odin index acced262a..9c47e79e8 100644 --- a/core/encoding/xml/debug_print.odin +++ b/core/encoding/xml/debug_print.odin @@ -4,7 +4,7 @@ package encoding_xml An XML 1.0 / 1.1 parser Copyright 2021-2022 Jeroen van Rijn <nom@duclavier.com>. - Made available under Odin's BSD-3 license. + Made available under Odin's license. A from-scratch XML implementation, loosely modeled on the [spec](https://www.w3.org/TR/2006/REC-xml11-20060816). diff --git a/core/encoding/xml/helpers.odin b/core/encoding/xml/helpers.odin index a9d4ad493..79f2d72c7 100644 --- a/core/encoding/xml/helpers.odin +++ b/core/encoding/xml/helpers.odin @@ -4,7 +4,7 @@ package encoding_xml An XML 1.0 / 1.1 parser Copyright 2021-2022 Jeroen van Rijn <nom@duclavier.com>. - Made available under Odin's BSD-3 license. + Made available under Odin's license. This file contains helper functions. */ diff --git a/core/encoding/xml/tokenizer.odin b/core/encoding/xml/tokenizer.odin index 3ef9a6388..71fa0bdf5 100644 --- a/core/encoding/xml/tokenizer.odin +++ b/core/encoding/xml/tokenizer.odin @@ -4,7 +4,7 @@ package encoding_xml An XML 1.0 / 1.1 parser Copyright 2021-2022 Jeroen van Rijn <nom@duclavier.com>. - Made available under Odin's BSD-3 license. + Made available under Odin's license. A from-scratch XML implementation, loosely modeled on the [spec](https://www.w3.org/TR/2006/REC-xml11-20060816). diff --git a/core/encoding/xml/xml_reader.odin b/core/encoding/xml/xml_reader.odin index 621c9c2d0..0e773fd8a 100644 --- a/core/encoding/xml/xml_reader.odin +++ b/core/encoding/xml/xml_reader.odin @@ -3,7 +3,7 @@ package encoding_xml An XML 1.0 / 1.1 parser 2021-2022 Jeroen van Rijn <nom@duclavier.com>. - available under Odin's BSD-3 license. + available under Odin's license. List of contributors: - Jeroen van Rijn: Initial implementation. |