diff options
Diffstat (limited to 'libgo/go/encoding/ascii85/ascii85.go')
-rw-r--r-- | libgo/go/encoding/ascii85/ascii85.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libgo/go/encoding/ascii85/ascii85.go b/libgo/go/encoding/ascii85/ascii85.go index 4d7193873a2..d42eb0ab00a 100644 --- a/libgo/go/encoding/ascii85/ascii85.go +++ b/libgo/go/encoding/ascii85/ascii85.go @@ -20,7 +20,7 @@ import ( // // The encoding handles 4-byte chunks, using a special encoding // for the last fragment, so Encode is not appropriate for use on -// individual blocks of a large data stream. Use NewEncoder() instead. +// individual blocks of a large data stream. Use NewEncoder() instead. // // Often, ascii85-encoded data is wrapped in <~ and ~> symbols. // Encode does not add these. @@ -85,7 +85,7 @@ func Encode(dst, src []byte) int { // MaxEncodedLen returns the maximum length of an encoding of n source bytes. func MaxEncodedLen(n int) int { return (n + 3) / 4 * 5 } -// NewEncoder returns a new ascii85 stream encoder. Data written to +// NewEncoder returns a new ascii85 stream encoder. Data written to // the returned writer will be encoded and then written to w. // Ascii85 encodings operate in 32-bit blocks; when finished // writing, the caller must Close the returned encoder to flush any @@ -294,7 +294,7 @@ func (d *decoder) Read(p []byte) (n int, err error) { } } - // Out of input, out of decoded output. Check errors. + // Out of input, out of decoded output. Check errors. if d.err != nil { return 0, d.err } |