diff options
author | David Symonds <dsymonds@golang.org> | 2009-11-11 17:31:28 -0800 |
---|---|---|
committer | David Symonds <dsymonds@golang.org> | 2009-11-11 17:31:28 -0800 |
commit | 8738c4dfb1033617c3382857ba83cb501b974716 (patch) | |
tree | c5c003c2022df521ae180474d8433fd658a41c5d /src/pkg/encoding/git85/git.go | |
parent | cd8bb89d919dc71aacca0ba38a3d15a1e46dc877 (diff) | |
download | golang-8738c4dfb1033617c3382857ba83cb501b974716.tar.gz |
Fix capitalisation of "Git".
R=rsc
http://codereview.appspot.com/154071
Committer: Russ Cox <rsc@golang.org>
Diffstat (limited to 'src/pkg/encoding/git85/git.go')
-rw-r--r-- | src/pkg/encoding/git85/git.go | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/pkg/encoding/git85/git.go b/src/pkg/encoding/git85/git.go index cfe627566..288fd748c 100644 --- a/src/pkg/encoding/git85/git.go +++ b/src/pkg/encoding/git85/git.go @@ -3,7 +3,7 @@ // license that can be found in the LICENSE file. // Package git85 implements the radix 85 data encoding -// used in the GIT version control system. +// used in the Git version control system. package git85 import ( @@ -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. @@ -144,9 +144,9 @@ func Decode(dst, src []byte) (n int, err os.Error) { 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 { return &encoder{w: w} } @@ -219,7 +219,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} } type decoder struct { |