aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc
diff options
context:
space:
mode:
authorsarna <sarna@chaszcze.org>2026-02-14 00:01:54 +0100
committerCalvin Rose <calsrose@gmail.com>2026-02-13 19:44:32 -0600
commit7aab3fbd6dbce39453a704ee6a0d357a31883f74 (patch)
tree26c3f2e57c479f3322485e22b24c500b77a60540 /doc
parentspork/stream: add make-stdin, make-stdout, and make-stderr (diff)
Fix module path in examples
Diffstat (limited to 'doc')
-rw-r--r--doc/api/base64.mdz4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/api/base64.mdz b/doc/api/base64.mdz
index 2cb5e1f..9409438 100644
--- a/doc/api/base64.mdz
+++ b/doc/api/base64.mdz
@@ -13,7 +13,7 @@ This module contains Base64 utilities.
Converts a string of any format (UTF-8, binary, ..) to base64 encoding.
@codeblock[janet]```
-(misc/base64/encode "this is a test")
+(base64/encode "this is a test")
# => "dGhpcyBpcyBhIHRlc3Q="
```
@@ -23,7 +23,7 @@ Converts a base64 encoded string to its binary representation of any format
(UTF-8, binary, ...).
@codeblock[janet]```
-(misc/base64/decode "dGhpcyBpcyBhIHRlc3Q=")
+(base64/decode "dGhpcyBpcyBhIHRlc3Q=")
# => "this is a test"
```