diff options
| author | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2025-10-09 23:05:29 +0200 |
|---|---|---|
| committer | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2025-10-09 23:05:29 +0200 |
| commit | 7a9ea3ee6d02d8eade6d7988498bd69716391563 (patch) | |
| tree | 1a920e9550114cd2dc36d4c489bb65ea1f73542a /core/compress | |
| parent | 2bc409eab53bb7208ec59d431112489eb9d226db (diff) | |
Further overhaul of package line comments.
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/shoco/doc.odin | 2 | ||||
| -rw-r--r-- | core/compress/shoco/shoco.odin | 2 | ||||
| -rw-r--r-- | core/compress/zlib/doc.odin | 2 |
5 files changed, 4 insertions, 6 deletions
diff --git a/core/compress/common.odin b/core/compress/common.odin index 917dcfba5..796a60071 100644 --- a/core/compress/common.odin +++ b/core/compress/common.odin @@ -1,4 +1,4 @@ -// package compress is a collection of utilities to aid with other compression packages. +// A collection of utilities to aid with other `compress`ion packages. package compress /* diff --git a/core/compress/gzip/doc.odin b/core/compress/gzip/doc.odin index c35f205e5..8a04c41bd 100644 --- a/core/compress/gzip/doc.odin +++ b/core/compress/gzip/doc.odin @@ -1,4 +1,4 @@ -// package gzip implements a small GZIP unpacker as an example. +// A small `GZIP` unpacker. package compress_gzip /* Copyright 2021 Jeroen van Rijn <nom@duclavier.com>. diff --git a/core/compress/shoco/doc.odin b/core/compress/shoco/doc.odin deleted file mode 100644 index 78ab01776..000000000 --- a/core/compress/shoco/doc.odin +++ /dev/null @@ -1,2 +0,0 @@ -// package shoco is an implementation of the shoco short string compressor. -package compress_shoco
\ No newline at end of file diff --git a/core/compress/shoco/shoco.odin b/core/compress/shoco/shoco.odin index d8810e532..be079df19 100644 --- a/core/compress/shoco/shoco.odin +++ b/core/compress/shoco/shoco.odin @@ -1,4 +1,4 @@ -// package shoco is an implementation of the shoco short string compressor. +// `Shoco` short string compression and decompression. package compress_shoco /* diff --git a/core/compress/zlib/doc.odin b/core/compress/zlib/doc.odin index f143073a3..9c3893e2f 100644 --- a/core/compress/zlib/doc.odin +++ b/core/compress/zlib/doc.odin @@ -1,4 +1,4 @@ -// package zlib implements Deflate decompression. +// `Deflate` decompression of raw and `ZLIB`-type streams. package compress_zlib /* Copyright 2021 Jeroen van Rijn <nom@duclavier.com>. |