From: Robin Eklind Date: Tue, 11 Dec 2012 17:17:53 +0000 (-0500) Subject: spec: Correct typo in method expressions example. X-Git-Tag: go1.1rc2~1668 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=1d46fc44b780507c4d09d54c232f73397cbf4e6d;p=gostls13.git 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 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. - +
  • If 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)