1
0
mirror of https://github.com/golang/go synced 2024-11-24 18:10:02 -07:00

compress/flate: fix typo in comment.

R=golang-dev, nigeltao_gnome, nigeltao
CC=golang-dev
https://golang.org/cl/3334041
This commit is contained in:
Mathieu Lonjaret 2010-11-26 13:05:22 +11:00 committed by Nigel Tao
parent 4e69976a60
commit 387d58e790

View File

@ -47,7 +47,7 @@ func (e *ReadError) String() string {
// A WriteError reports an error encountered while writing output.
type WriteError struct {
Offset int64 // byte offset where error occurred
Error os.Error // error returned by underlying Read
Error os.Error // error returned by underlying Write
}
func (e *WriteError) String() string {