From: Rob Pike Date: Fri, 26 Jun 2015 01:11:45 +0000 (+1000) Subject: spec: fix bare & in HTML X-Git-Tag: go1.5beta1~115 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=a4ec50bd0b5986fbe0369043ac9e30e4ce229f21;p=gostls13.git spec: fix bare & in HTML No need to update the date; this is not a spec change. Change-Id: I10a31234ed985c59e5d9b5328664a36661cef31e Reviewed-on: https://go-review.googlesource.com/11531 Reviewed-by: Andrew Gerrand --- diff --git a/doc/go_spec.html b/doc/go_spec.html index 396454dd54..cc01494ff5 100644 --- a/doc/go_spec.html +++ b/doc/go_spec.html @@ -2600,7 +2600,7 @@ q.x // (*(*q).T0).x (*q).x is a valid field selector p.M2() // p.M2() M2 expects *T2 receiver p.M1() // ((*p).T1).M1() M1 expects T1 receiver -p.M0() // ((&(*p).T0)).M0() M0 expects *T0 receiver, see section on Calls +p.M0() // ((&(*p).T0)).M0() M0 expects *T0 receiver, see section on Calls