From: Russ Cox Date: Tue, 10 Nov 2009 01:09:33 +0000 (-0800) Subject: noted by kaib: explicit assignment initialization X-Git-Tag: weekly.2009-11-10~16 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=1a821b32da9f411945e71c20ed36a957d1dafa4b;p=gostls13.git noted by kaib: explicit assignment initialization didn't match the composite literal initialization. R=r CC=kaib http://go/go-review/1024039 --- 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;