From e2be58d1ab84f91dfbba1067aae7145f24fd650d Mon Sep 17 00:00:00 2001 From: Mihai Todor Date: Wed, 10 Oct 2018 16:52:26 +0100 Subject: [PATCH] base64: clarify decodeQuantum docs --- src/encoding/base64/base64.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/encoding/base64/base64.go b/src/encoding/base64/base64.go index e8afc48859..0bb37b311a 100644 --- a/src/encoding/base64/base64.go +++ b/src/encoding/base64/base64.go @@ -270,7 +270,7 @@ func (e CorruptInputError) Error() string { return "illegal base64 data at input byte " + strconv.FormatInt(int64(e), 10) } -// decodeQuantum decodes up to 4 base64 bytes. It takes for parameters +// decodeQuantum decodes up to 4 base64 bytes. The received parameters are // the destination buffer dst, the source buffer src and an index in the // source buffer si. // It returns the number of bytes read from src, the number of bytes written