From: Peter Mundy Date: Tue, 9 Nov 2010 16:46:13 +0000 (-0800) Subject: doc: fix go_spec spelling error X-Git-Tag: weekly.2010-11-10~8 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=9626180918d834e0a6eb56e28c6ca201e39dbcba;p=gostls13.git doc: fix go_spec spelling error R=rsc, gri CC=golang-dev https://golang.org/cl/2985041 --- diff --git a/doc/go_spec.html b/doc/go_spec.html index e3346b271d..d0db9d8b9e 100644 --- a/doc/go_spec.html +++ b/doc/go_spec.html @@ -4396,7 +4396,7 @@ BuiltinArgs = Type [ "," ExpressionList ] | ExpressionList .

For a channel c, the built-in function close(c) marks the channel as unable to accept more values through a send operation; -values sent to a closed channed are ignored. +values sent to a closed channel are ignored. After calling close, and after any previously sent values have been received, receive operations will return the zero value for the channel's type without blocking.