1
0
mirror of https://github.com/golang/go synced 2024-11-21 16:44:43 -07:00

spec: delete erroneous word 'pointer' in specification of select.

R=gri
CC=golang-dev
https://golang.org/cl/1960044
This commit is contained in:
Rob Pike 2010-08-16 06:42:41 +10:00
parent 5b0c317c9c
commit 132d2f11a8

View File

@ -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 <code>nil</code>,
A channel may be <code>nil</code>,
which is equivalent to that case not
being present in the select statement
except, if a send, its expression is still evaluated.