From ef7c370a201b1aae90349b1e869493264a147baa Mon Sep 17 00:00:00 2001 From: Russ Cox Date: Wed, 11 Nov 2009 14:52:38 -0800 Subject: [PATCH] typo Fixes #69. R=r https://golang.org/cl/152082 --- doc/effective_go.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }

-- 2.50.0