aboutsummaryrefslogtreecommitdiff
path: root/core/compress
diff options
context:
space:
mode:
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>.