diff options
Diffstat (limited to 'core/compress')
| -rw-r--r-- | core/compress/common.odin | 2 | ||||
| -rw-r--r-- | core/compress/gzip/doc.odin | 2 | ||||
| -rw-r--r-- | core/compress/gzip/gzip.odin | 2 | ||||
| -rw-r--r-- | core/compress/shoco/shoco.odin | 2 | ||||
| -rw-r--r-- | core/compress/zlib/doc.odin | 2 | ||||
| -rw-r--r-- | core/compress/zlib/zlib.odin | 2 |
6 files changed, 6 insertions, 6 deletions
diff --git a/core/compress/common.odin b/core/compress/common.odin index 796a60071..39aa1ca72 100644 --- a/core/compress/common.odin +++ b/core/compress/common.odin @@ -3,7 +3,7 @@ package compress /* Copyright 2021 Jeroen van Rijn <nom@duclavier.com>. - Made available under Odin's BSD-3 license. + Made available under Odin's license. List of contributors: Jeroen van Rijn: Initial implementation, optimization. diff --git a/core/compress/gzip/doc.odin b/core/compress/gzip/doc.odin index 18f2259cb..c20ebc33a 100644 --- a/core/compress/gzip/doc.odin +++ b/core/compress/gzip/doc.odin @@ -82,7 +82,7 @@ package compress_gzip /* Copyright 2021 Jeroen van Rijn <nom@duclavier.com>. - Made available under Odin's BSD-3 license. + Made available under Odin's license. List of contributors: Jeroen van Rijn: Initial implementation. diff --git a/core/compress/gzip/gzip.odin b/core/compress/gzip/gzip.odin index 57ed3c3c5..7dc8120e4 100644 --- a/core/compress/gzip/gzip.odin +++ b/core/compress/gzip/gzip.odin @@ -2,7 +2,7 @@ package compress_gzip /* Copyright 2021 Jeroen van Rijn <nom@duclavier.com>. - Made available under Odin's BSD-3 license. + Made available under Odin's license. List of contributors: Jeroen van Rijn: Initial implementation. diff --git a/core/compress/shoco/shoco.odin b/core/compress/shoco/shoco.odin index be079df19..b112ddb04 100644 --- a/core/compress/shoco/shoco.odin +++ b/core/compress/shoco/shoco.odin @@ -3,7 +3,7 @@ package compress_shoco /* Copyright 2022 Jeroen van Rijn <nom@duclavier.com>. - Made available under Odin's BSD-3 license. + Made available under Odin's license. List of contributors: Jeroen van Rijn: Initial implementation. diff --git a/core/compress/zlib/doc.odin b/core/compress/zlib/doc.odin index 6923c2a60..8dac17587 100644 --- a/core/compress/zlib/doc.odin +++ b/core/compress/zlib/doc.odin @@ -44,7 +44,7 @@ package compress_zlib /* Copyright 2021 Jeroen van Rijn <nom@duclavier.com>. - Made available under Odin's BSD-3 license. + Made available under Odin's license. List of contributors: Jeroen van Rijn: Initial implementation. diff --git a/core/compress/zlib/zlib.odin b/core/compress/zlib/zlib.odin index be8a7d7d3..b9189c1f1 100644 --- a/core/compress/zlib/zlib.odin +++ b/core/compress/zlib/zlib.odin @@ -3,7 +3,7 @@ package compress_zlib /* Copyright 2021 Jeroen van Rijn <nom@duclavier.com>. - Made available under Odin's BSD-3 license. + Made available under Odin's license. List of contributors: Jeroen van Rijn: Initial implementation, optimization. |