From 1a821b32da9f411945e71c20ed36a957d1dafa4b Mon Sep 17 00:00:00 2001 From: Russ Cox Date: Mon, 9 Nov 2009 17:09:33 -0800 Subject: [PATCH] noted by kaib: explicit assignment initialization didn't match the composite literal initialization. R=r CC=kaib http://go/go-review/1024039 --- doc/effective_go.html | 1 - 1 file changed, 1 deletion(-) diff --git a/doc/effective_go.html b/doc/effective_go.html index ac012397a6..3c4ccecca2 100644 --- a/doc/effective_go.html +++ b/doc/effective_go.html @@ -822,7 +822,6 @@ func NewFile(fd int, name string) *File { f := new(File); f.fd = fd; f.name = name; - f.error = nil; f.dirinfo = nil; f.nepipe = 0; return f; -- 2.48.1