We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f015c53 commit 0ed8231Copy full SHA for 0ed8231
src/pkg/encoding/base64/base64.go
@@ -324,6 +324,6 @@ func NewDecoder(enc *Encoding, r io.Reader) io.Reader {
324
return &decoder{enc: enc, r: r}
325
}
326
327
-// DecodeLen returns the maximum length in bytes of the decoded data
+// DecodedLen returns the maximum length in bytes of the decoded data
328
// corresponding to n bytes of base64-encoded data.
329
func (enc *Encoding) DecodedLen(n int) int { return n / 4 * 3 }
0 commit comments