From: Russ Cox Date: Wed, 11 Nov 2009 22:52:38 +0000 (-0800) Subject: typo X-Git-Tag: weekly.2009-11-12~18 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=ef7c370a201b1aae90349b1e869493264a147baa;p=gostls13.git typo Fixes #69. R=r https://golang.org/cl/152082 --- diff --git a/doc/effective_go.html b/doc/effective_go.html index e8acf08dfb..c4a573a54b 100644 --- a/doc/effective_go.html +++ b/doc/effective_go.html @@ -1467,7 +1467,7 @@ func (p *ByteSlice) Write(data []byte) (n int, err os.Error) { slice := *p; // Again as above. *p = slice; - return len(data), nil) + return len(data), nil; }