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/hash | |
| parent | 2bc409eab53bb7208ec59d431112489eb9d226db (diff) | |
Further overhaul of package line comments.
Diffstat (limited to 'core/hash')
| -rw-r--r-- | core/hash/doc.odin | 2 | ||||
| -rw-r--r-- | core/hash/xxhash/common.odin | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/core/hash/doc.odin b/core/hash/doc.odin index 5fdc79cb7..d7531a4c2 100644 --- a/core/hash/doc.odin +++ b/core/hash/doc.odin @@ -1,2 +1,2 @@ -// package hash implements crc32, crc64, adler32, djb, fnv, jenkins, murmur and other hashes. +// `crc32`, `crc64`, `adler32`, `djb`, `fnv`, `jenkins`, `murmur` and other hashes. package hash
\ No newline at end of file diff --git a/core/hash/xxhash/common.odin b/core/hash/xxhash/common.odin index a0f26fe4e..ce98f21f9 100644 --- a/core/hash/xxhash/common.odin +++ b/core/hash/xxhash/common.odin @@ -1,4 +1,4 @@ -// package xxhash implements Yann Collet's xxhash. +// Yann Collet's `xxhash`. // // [[ xxhash Fast Hash Algorithm; https://cyan4973.github.io/xxHash/ ]] package xxhash |