diff options
author | David Thompson <dthompson2@worcester.edu> | 2024-11-09 13:04:16 -0500 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2024-11-09 13:04:16 -0500 |
commit | 0a2de333d1c7f190078e307fc490f6fe98e8b0bb (patch) | |
tree | 2b278bc8e63b294fd6253bc70675d394e4879a13 | |
parent | 37f3fabc6e699622320c7baa2b7e9b4c466d1c82 (diff) |
base64: Fix docstring.
-rw-r--r-- | chickadee/base64.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chickadee/base64.scm b/chickadee/base64.scm index 9397f9f..8fe384c 100644 --- a/chickadee/base64.scm +++ b/chickadee/base64.scm @@ -109,7 +109,7 @@ return a bytevector containing the decoded data." bv)) (define* (base64-encode bv #:optional (alphabet base64-alphabet)) - "Encode the bytevector @var{bv} to a base64 using + "Encode the bytevector @var{bv} as base64 using @var{alphabet} and return a string containing the encoded data." (define encoder (alphabet->encoder alphabet)) (define len (bytevector-length bv)) |