From 1f4386fd0815c6c77a62a86aa457ebec337c68c6 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Mon, 4 Sep 2023 21:44:46 +0530 Subject: [PATCH] ... --- tools/utils/base85/base85.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/utils/base85/base85.go b/tools/utils/base85/base85.go index 20f28591a..9d71e6106 100644 --- a/tools/utils/base85/base85.go +++ b/tools/utils/base85/base85.go @@ -189,7 +189,7 @@ func Decode(dst, src []byte) (int, error) { return t, nil } -// EncodedLen returns the length in bytes of the base64 encoding of an input +// EncodedLen returns the length in bytes of the base85 encoding of an input // buffer of length n. func EncodedLen(n int) int { s := n / 4