docs: replace references to gofix etc. with tool invocations
R=rsc
CC=golang-dev
https://golang.org/cl/5630045
diff --git a/doc/effective_go.html b/doc/effective_go.html
index 4ecbe19..edaffd7 100644
--- a/doc/effective_go.html
+++ b/doc/effective_go.html
@@ -66,7 +66,10 @@
With Go we take an unusual
approach and let the machine
take care of most formatting issues.
-The <code>gofmt</code> tool reads a Go program
+The <code>gofmt</code> program
+(also available as <code>go tool fmt</code>, which
+operates at the package level rather than source file level)
+reads a Go program
and emits the source in a standard style of indentation
and vertical alignment, retaining and if necessary
reformatting comments.