]> Cypherpunks repositories - gostls13.git/commitdiff
spec: delete erroneous word 'pointer' in specification of select.
authorRob Pike <r@golang.org>
Sun, 15 Aug 2010 20:42:41 +0000 (06:42 +1000)
committerRob Pike <r@golang.org>
Sun, 15 Aug 2010 20:42:41 +0000 (06:42 +1000)
R=gri
CC=golang-dev
https://golang.org/cl/1960044

doc/go_spec.html

index 53b63fa4ded56a50b5d968f4013fcf9d906fe0ac..12c3627881324700f11308ccf4d578121fd92cda 100644 (file)
@@ -4056,7 +4056,7 @@ RecvExpr =  [ Expression ( "=" | ":=" ) ] "&lt;-" 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.