From cc1a979272aadb3bad34a2a70081500a26b2d969 Mon Sep 17 00:00:00 2001 From: Russ Cox Date: Wed, 4 Nov 2009 17:55:06 -0800 Subject: package patch R=r http://go/go-review/1018043 --- src/pkg/encoding/git85/git.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/pkg/encoding/git85/git.go') diff --git a/src/pkg/encoding/git85/git.go b/src/pkg/encoding/git85/git.go index 209480ee60..1ee4c9c919 100644 --- a/src/pkg/encoding/git85/git.go +++ b/src/pkg/encoding/git85/git.go @@ -44,7 +44,7 @@ var decode = [256]uint8{ // bytes of dst. As a convenience, it returns the number // of bytes written to dst, but this value is always EncodedLen(len(src)). // Encode implements the radix 85 encoding used in the -// Git version control tool. +// GIT version control tool. // // The encoding splits src into chunks of at most 52 bytes // and encodes each chunk on its own line. @@ -146,9 +146,9 @@ func MaxDecodedLen(n int) int { return n/5*4; } -// NewEncoder returns a new Git base85 stream encoder. Data written to +// NewEncoder returns a new GIT base85 stream encoder. Data written to // the returned writer will be encoded and then written to w. -// The Git encoding operates on 52-byte blocks; when finished +// The GIT encoding operates on 52-byte blocks; when finished // writing, the caller must Close the returned encoder to flush any // partially written blocks. func NewEncoder(w io.Writer) io.WriteCloser { @@ -223,7 +223,7 @@ func (e *encoder) Close() os.Error { return e.err; } -// NewDecoder returns a new Git base85 stream decoder. +// NewDecoder returns a new GIT base85 stream decoder. func NewDecoder(r io.Reader) io.Reader { return &decoder{r: r}; } -- cgit v1.3-5-g9baa