From: Rob Pike Date: Sun, 15 Aug 2010 20:42:41 +0000 (+1000) Subject: spec: delete erroneous word 'pointer' in specification of select. X-Git-Tag: weekly.2010-08-25~55 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=132d2f11a82cf1bd6c0601eddfe41d53b7427480;p=gostls13.git spec: delete erroneous word 'pointer' in specification of select. R=gri CC=golang-dev https://golang.org/cl/1960044 --- diff --git a/doc/go_spec.html b/doc/go_spec.html index 53b63fa4de..12c3627881 100644 --- a/doc/go_spec.html +++ b/doc/go_spec.html @@ -4056,7 +4056,7 @@ RecvExpr = [ Expression ( "=" | ":=" ) ] "<-" Expression . For all the send and receive expressions in the "select" statement, the channel expressions are evaluated in top-to-bottom order, along with any expressions that appear on the right hand side of send expressions. -A channel pointer may be nil, +A channel may be nil, which is equivalent to that case not being present in the select statement except, if a send, its expression is still evaluated.