From: Giles Lean Date: Tue, 9 Mar 2010 02:12:25 +0000 (-0800) Subject: encoding/base64: fix typo in comment X-Git-Tag: weekly.2010-03-15~32 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=0ed8231e692b102fe2126e76ffdc417845e887a5;p=gostls13.git encoding/base64: fix typo in comment R=golang-dev, rsc CC=golang-dev https://golang.org/cl/258041 --- 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 }