aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc
diff options
context:
space:
mode:
authorCalvin Rose <calsrose@gmail.com>2026-02-14 10:00:06 -0600
committerCalvin Rose <calsrose@gmail.com>2026-02-14 10:00:06 -0600
commit387f8ff8a5936347cc3a38f34cf14417eeb01740 (patch)
tree357e58ef893fd060ac87afdbc8f074d25ea7f6c7 /doc
parentSlight tweaks so test suite is not hash sensitive. (diff)
parentDon't add hash sensitive tests. (diff)
Merge branch 'master' into cjanet-jit
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"
```