spec: Correct typo in method expressions example.
Also, remove unnecessary whitespace.
R=golang-dev, rsc
CC=golang-dev
https://golang.org/cl/6928045
diff --git a/doc/go_spec.html b/doc/go_spec.html
index 6f4e68c..6e88d47 100644
--- a/doc/go_spec.html
+++ b/doc/go_spec.html
@@ -1000,7 +1000,7 @@
<code>T</code>. The method set of <code>*S</code> also
includes promoted methods with receiver <code>*T</code>.
</li>
-
+
<li>
If <code>S</code> contains an anonymous field <code>*T</code>,
the method sets of <code>S</code> and <code>*S</code> both
@@ -3359,7 +3359,7 @@
<pre>
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)
</pre>