diff --git a/doc/effective_go.html b/doc/effective_go.html
index e546c083b6..227659ef4c 100644
--- a/doc/effective_go.html
+++ b/doc/effective_go.html
@@ -1805,7 +1805,7 @@ is different from our custom Append function above.
Schematically, it's like this:
-func append(slice []T, elements...T) []T +func append(slice []T, elements ...T) []T
where T is a placeholder for any given type. You can't