From: Robert Griesemer Date: Fri, 19 Jun 2009 20:03:01 +0000 (-0700) Subject: fix for conversion rule X-Git-Tag: weekly.2009-11-06~1369 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=e2cb60b378e9030dc4e3bf158f54dddcd87295f9;p=gostls13.git fix for conversion rule R=rsc DELTA=25 (10 added, 7 deleted, 8 changed) OCL=30516 CL=30531 --- diff --git a/doc/go_spec.html b/doc/go_spec.html index 9ffcb41a77..37faf1c905 100644 --- a/doc/go_spec.html +++ b/doc/go_spec.html @@ -997,7 +997,7 @@ A channel provides a mechanism for two concurrently executing functions to synchronize execution and communicate by passing a value of a specified element type. The element type must be complete (§Types). (TODO: is completeness necessary here?) -A channel value may be nil. +A value of channel type may be nil.

@@ -1161,19 +1161,22 @@ be assigned to otherwise incompatible types:
 

@@ -3846,13 +3849,13 @@ The following conversion rules apply: