]> Cypherpunks repositories - gostls13.git/commitdiff
spec: delete incorrect obsolete mention of selector working on
authorRob Pike <r@golang.org>
Sat, 19 Feb 2011 23:04:56 +0000 (15:04 -0800)
committerRob Pike <r@golang.org>
Sat, 19 Feb 2011 23:04:56 +0000 (15:04 -0800)
pointer to interface type.

R=golang-dev, niemeyer, gri
CC=golang-dev
https://golang.org/cl/4173067

doc/go_spec.html

index 077085d601543f2accb241511a4e4d8ac528a9a7..72cfa6305639810c774f1925f6d6c4eb4126181a 100644 (file)
@@ -1,5 +1,5 @@
 <!-- title The Go Programming Language Specification -->
-<!-- subtitle Version of February 15, 2011 -->
+<!-- subtitle Version of February 19, 2011 -->
 
 <!--
 TODO
@@ -2267,7 +2267,7 @@ If there is not exactly one <code>f</code> with shallowest depth, the selector
 expression is illegal.
 </li>
 <li>
-For a variable <code>x</code> of type <code>I</code> or <code>*I</code>
+For a variable <code>x</code> of type <code>I</code>
 where <code>I</code> is an interface type,
 <code>x.f</code> denotes the actual method with name <code>f</code> of the value assigned
 to <code>x</code> if there is such a method.