diff options
| author | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2025-10-10 12:24:28 +0200 |
|---|---|---|
| committer | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2025-10-10 12:24:28 +0200 |
| commit | ece213afca742bb91e9328230fd21b6b94c85662 (patch) | |
| tree | bd53a386f09c717dfb8c1af903e95599a22ca6a5 /core/encoding/cbor | |
| parent | 4068eeb5fae3981b34a5e5ae96e7c1b0c0eedc85 (diff) | |
Render examples.
Diffstat (limited to 'core/encoding/cbor')
| -rw-r--r-- | core/encoding/cbor/doc.odin | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/core/encoding/cbor/doc.odin b/core/encoding/cbor/doc.odin index 4acc63139..4967a079a 100644 --- a/core/encoding/cbor/doc.odin +++ b/core/encoding/cbor/doc.odin @@ -1,7 +1,6 @@ -// Encoding and decoding 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. +Encodes and decodes types from/into `RCF 8949` compatible `CBOR` binary. + Also provided are conversion to and from JSON and the CBOR diagnostic format. **Allocations:** @@ -166,4 +165,5 @@ Output: "renamed :)": 123123.12500000, "str": "Hello, World!" } -*/
\ No newline at end of file +*/ +package encoding_cbor
\ No newline at end of file |