aboutsummaryrefslogtreecommitdiff
path: root/core/encoding
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/encoding
parentaf189b45f37dcb01ba37230f6a04bcf5260b2a48 (diff)
More package lines
Diffstat (limited to 'core/encoding')
-rw-r--r--core/encoding/base32/doc.odin2
-rw-r--r--core/encoding/base64/doc.odin2
-rw-r--r--core/encoding/cbor/doc.odin6
3 files changed, 6 insertions, 4 deletions
diff --git a/core/encoding/base32/doc.odin b/core/encoding/base32/doc.odin
index 8d6f57c88..34d12e657 100644
--- a/core/encoding/base32/doc.odin
+++ b/core/encoding/base32/doc.odin
@@ -1,2 +1,2 @@
-// package base32 implements Base32 encoding/decoding, as specified in RFC 4648.
+// package base32 implements Base32 encoding and decoding, as specified in RFC 4648.
package encoding_base32 \ No newline at end of file
diff --git a/core/encoding/base64/doc.odin b/core/encoding/base64/doc.odin
new file mode 100644
index 000000000..902cf660e
--- /dev/null
+++ b/core/encoding/base64/doc.odin
@@ -0,0 +1,2 @@
+// package base64 implements Base64 encoding and decoding
+package encoding_base64 \ No newline at end of file
diff --git a/core/encoding/cbor/doc.odin b/core/encoding/cbor/doc.odin
index b3fa36130..92f0fa02d 100644
--- a/core/encoding/cbor/doc.odin
+++ b/core/encoding/cbor/doc.odin
@@ -1,3 +1,5 @@
+// package cbor implements encoding, decoding, marshaling and unmarshaling types from/into RCF 8949 compatible CBOR binary.
+package encoding_cbor
/*
Package cbor encodes, decodes, marshals and unmarshals types from/into RCF 8949 compatible CBOR binary.
Also provided are conversion to and from JSON and the CBOR diagnostic format.
@@ -164,6 +166,4 @@ Output:
"renamed :)": 123123.12500000,
"str": "Hello, World!"
}
-*/
-package encoding_cbor
-
+*/ \ No newline at end of file