Message:
Hello golang-dev@googlegroups.com,
I'd like you to review this change to
https://code.google.com/p/go.tools
Description:
cmd/godoc: fix Index.WriteTo call
It changed in the CL 24490043.
Please review this at https://codereview.appspot.com/25640043/
Affected files (+1, -1 lines):
M cmd/godoc/main.go
Index: cmd/godoc/main.go
===================================================================
--- a/cmd/godoc/main.go
+++ b/cmd/godoc/main.go
@@ -263,7 +263,7 @@
log.Fatal(err)
}
index, _ := corpus.CurrentIndex()
- err = index.Write(f)
+ _, err = index.WriteTo(f)
if err != nil {
log.Fatal(err)
}
--
---
You received this message because you are subscribed to the Google Groups "golang-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to golang-dev+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.