summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2009-11-09 17:09:33 -0800
committerRuss Cox <rsc@golang.org>2009-11-09 17:09:33 -0800
commita60005a41a089f173ea4e896aaa40319a664fd40 (patch)
tree78f164c4cf6964802e97b40b6f360d4b6a2eb0be
parent8dc0f66945ac8bb073cd91e526ba52fe06e84862 (diff)
downloadgolang-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.html1
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;