diff --git a/doc/effective_go.html b/doc/effective_go.html
index f6fe48c8d0..e07c27ca2f 100644
--- a/doc/effective_go.html
+++ b/doc/effective_go.html
@@ -2409,7 +2409,7 @@ The http package contains this code:
// Handler object that calls f.
type HandlerFunc func(ResponseWriter, *Request)
-// ServeHTTP calls f(c, req).
+// ServeHTTP calls f(w, req).
func (f HandlerFunc) ServeHTTP(w ResponseWriter, req *Request) {
f(w, req)
}
@@ -2447,7 +2447,7 @@ the handler installed at that page has value ArgServer
and type HandlerFunc.
The HTTP server will invoke the method ServeHTTP
of that type, with ArgServer as the receiver, which will in turn call
-ArgServer (via the invocation f(c, req)
+ArgServer (via the invocation f(w, req)
inside HandlerFunc.ServeHTTP).
The arguments will then be displayed.