From 1d46fc44b780507c4d09d54c232f73397cbf4e6d Mon Sep 17 00:00:00 2001 From: Robin Eklind Date: Tue, 11 Dec 2012 12:17:53 -0500 Subject: [PATCH] spec: Correct typo in method expressions example. Also, remove unnecessary whitespace. R=golang-dev, rsc CC=golang-dev https://golang.org/cl/6928045 --- doc/go_spec.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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)
     
    -- 2.48.1