From: Robert Griesemer Date: Thu, 29 Oct 2009 01:17:24 +0000 (-0700) Subject: clarify rule for channel send X-Git-Tag: weekly.2009-11-06~182 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=b691e08e2cbdbcc3963c78a60a80d0ff235600ce;p=gostls13.git clarify rule for channel send R=rsc CC=go-dev http://go/go-review/1018002 --- diff --git a/doc/go_spec.html b/doc/go_spec.html index c743f6d04d..c1ab22b7ae 100644 --- a/doc/go_spec.html +++ b/doc/go_spec.html @@ -2528,8 +2528,9 @@ For operations involving constants only, see the section on

-In a channel send, the first operand is always a channel and the -second is a value of the channel's element type. +In a channel send, the first operand is always a channel and the second +must be a value assignment compatible +with the channel's element type.