diff options
| author | Christopher Wedgwood <cw@f00f.org> | 2009-11-30 12:03:10 -0800 |
|---|---|---|
| committer | Russ Cox <rsc@golang.org> | 2009-11-30 12:03:10 -0800 |
| commit | c78710f53e8eb2532f690307d8a5a5650f6dfc63 (patch) | |
| tree | 3abe2c84250b4599633314536d1163995783fc4b /src/pkg/encoding/git85 | |
| parent | f0c971954091903622ebd2c5432cbcc08d3e937f (diff) | |
| download | go-c78710f53e8eb2532f690307d8a5a5650f6dfc63.tar.xz | |
Add trivial whitespace to CorruptInputError strings.
R=r, rsc
https://golang.org/cl/161058
Diffstat (limited to 'src/pkg/encoding/git85')
| -rw-r--r-- | src/pkg/encoding/git85/git.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pkg/encoding/git85/git.go b/src/pkg/encoding/git85/git.go index 71130a883b..1e52997929 100644 --- a/src/pkg/encoding/git85/git.go +++ b/src/pkg/encoding/git85/git.go @@ -16,7 +16,7 @@ import ( type CorruptInputError int64 func (e CorruptInputError) String() string { - return "illegal git85 data at input byte" + strconv.Itoa64(int64(e)) + return "illegal git85 data at input byte " + strconv.Itoa64(int64(e)) } const encode = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz!#$%&()*+-;<=>?@^_`{|}~" |
