diff --git a/doc/go_spec.html b/doc/go_spec.html
index 6f4e68cc9b..6e88d47f31 100644
--- a/doc/go_spec.html
+++ b/doc/go_spec.html
@@ -1000,7 +1000,7 @@ promoted methods are included in the method set of the struct as follows:
T. The method set of *S also
includes promoted methods with receiver *T.
-
+
S contains an anonymous field *T,
the method sets of S and *S both
@@ -3359,7 +3359,7 @@ these five invocations are equivalent:
t.Mv(7) T.Mv(t, 7) -(T).Mv(t, t) +(T).Mv(t, 7) f1 := T.Mv; f1(t, 7) f2 := (T).Mv; f2(t, 7)