diff options
author | Russ Cox <rsc@golang.org> | 2009-11-09 17:09:33 -0800 |
---|---|---|
committer | Russ Cox <rsc@golang.org> | 2009-11-09 17:09:33 -0800 |
commit | a60005a41a089f173ea4e896aaa40319a664fd40 (patch) | |
tree | 78f164c4cf6964802e97b40b6f360d4b6a2eb0be | |
parent | 8dc0f66945ac8bb073cd91e526ba52fe06e84862 (diff) | |
download | golang-a60005a41a089f173ea4e896aaa40319a664fd40.tar.gz |
noted by kaib: explicit assignment initialization
didn't match the composite literal initialization.
R=r
CC=kaib
http://go/go-review/1024039
-rw-r--r-- | doc/effective_go.html | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/doc/effective_go.html b/doc/effective_go.html index ac012397a..3c4ccecca 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; |