diff --git a/doc/effective_go.html b/doc/effective_go.html
index 9a674c72bf..2ecef44f41 100644
--- a/doc/effective_go.html
+++ b/doc/effective_go.html
@@ -2245,7 +2245,7 @@ we would write job.Logger.
This would be useful if we wanted to refine the methods of Logger.
-func (job *Job) Logf(format string, args ...) {
+func (job *Job) Logf(format string, args ...interface{}) {
job.Logger.Logf("%q: %s", job.Command, fmt.Sprintf(format, args))
}