diff options
author | Peter Mundy <go.peter.90@gmail.com> | 2010-11-09 08:46:13 -0800 |
---|---|---|
committer | Peter Mundy <go.peter.90@gmail.com> | 2010-11-09 08:46:13 -0800 |
commit | 2eca5ccaced6e93e29945bb4b42f87be320c2cb9 (patch) | |
tree | ad59408cfbe19e58b1a4eebe30a5e1797d398fa3 /doc | |
parent | be3abb0ad60d4607e9750da6f440b3e5e020521f (diff) | |
download | go-2eca5ccaced6e93e29945bb4b42f87be320c2cb9.tar.gz |
doc: fix go_spec spelling error
R=rsc, gri
CC=golang-dev
http://codereview.appspot.com/2985041
Committer: Robert Griesemer <gri@golang.org>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/go_spec.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/go_spec.html b/doc/go_spec.html index e3346b271..d0db9d8b9 100644 --- a/doc/go_spec.html +++ b/doc/go_spec.html @@ -4396,7 +4396,7 @@ BuiltinArgs = Type [ "," ExpressionList ] | ExpressionList . <p> For a channel <code>c</code>, the built-in function <code>close(c)</code> 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 <code>close</code>, and after any previously sent values have been received, receive operations will return the zero value for the channel's type without blocking. |