From 0ed8231e692b102fe2126e76ffdc417845e887a5 Mon Sep 17 00:00:00 2001 From: Giles Lean Date: Mon, 8 Mar 2010 18:12:25 -0800 Subject: [PATCH] encoding/base64: fix typo in comment R=golang-dev, rsc CC=golang-dev https://golang.org/cl/258041 --- src/pkg/encoding/base64/base64.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pkg/encoding/base64/base64.go b/src/pkg/encoding/base64/base64.go index d4429094a2..c8e70fccf0 100644 --- a/src/pkg/encoding/base64/base64.go +++ b/src/pkg/encoding/base64/base64.go @@ -324,6 +324,6 @@ func NewDecoder(enc *Encoding, r io.Reader) io.Reader { return &decoder{enc: enc, r: r} } -// DecodeLen returns the maximum length in bytes of the decoded data +// DecodedLen returns the maximum length in bytes of the decoded data // corresponding to n bytes of base64-encoded data. func (enc *Encoding) DecodedLen(n int) int { return n / 4 * 3 } -- 2.48.1