aboutsummaryrefslogtreecommitdiff
path: root/core/compress
diff options
context:
space:
mode:
authorJeroen van Rijn <Kelimion@users.noreply.github.com>2025-10-09 16:11:33 +0200
committerJeroen van Rijn <Kelimion@users.noreply.github.com>2025-10-09 16:11:33 +0200
commit248b0fe9e155e1a00a04cb7b1fc687601d401d7c (patch)
treee9415d31f1da14a1f8453790ce4c130aca06ecfc /core/compress
parentaf189b45f37dcb01ba37230f6a04bcf5260b2a48 (diff)
More package lines
Diffstat (limited to 'core/compress')
-rw-r--r--core/compress/common.odin7
-rw-r--r--core/compress/gzip/doc.odin2
-rw-r--r--core/compress/zlib/doc.odin2
3 files changed, 5 insertions, 6 deletions
diff --git a/core/compress/common.odin b/core/compress/common.odin
index f4429b667..917dcfba5 100644
--- a/core/compress/common.odin
+++ b/core/compress/common.odin
@@ -1,3 +1,6 @@
+// package compress is a collection of utilities to aid with other compression packages.
+package compress
+
/*
Copyright 2021 Jeroen van Rijn <nom@duclavier.com>.
Made available under Odin's BSD-3 license.
@@ -6,10 +9,6 @@
Jeroen van Rijn: Initial implementation, optimization.
*/
-
-// package compress is a collection of utilities to aid with other compression packages
-package compress
-
import "core:io"
import "core:bytes"
import "base:runtime"
diff --git a/core/compress/gzip/doc.odin b/core/compress/gzip/doc.odin
index 745d020c5..c35f205e5 100644
--- a/core/compress/gzip/doc.odin
+++ b/core/compress/gzip/doc.odin
@@ -1,4 +1,4 @@
-// package gzip implements a small GZIP implementation as an example.
+// package gzip implements a small GZIP unpacker as an example.
package compress_gzip
/*
Copyright 2021 Jeroen van Rijn <nom@duclavier.com>.
diff --git a/core/compress/zlib/doc.odin b/core/compress/zlib/doc.odin
index 19ef1c045..f143073a3 100644
--- a/core/compress/zlib/doc.odin
+++ b/core/compress/zlib/doc.odin
@@ -1,4 +1,4 @@
-// package zlib implements Deflate decompression
+// package zlib implements Deflate decompression.
package compress_zlib
/*
Copyright 2021 Jeroen van Rijn <nom@duclavier.com>.