aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Mundy <go.peter.90@gmail.com>2010-11-09 08:46:13 -0800
committerRobert Griesemer <gri@golang.org>2010-11-09 08:46:13 -0800
commit9626180918d834e0a6eb56e28c6ca201e39dbcba (patch)
tree1f5744dc717e187e8d68b0c85afa90d0b0fb0745
parent49fdfe21dd5d1a08b1edaac5c0caeedf492d32e2 (diff)
downloadgo-9626180918d834e0a6eb56e28c6ca201e39dbcba.tar.gz
go-9626180918d834e0a6eb56e28c6ca201e39dbcba.zip
doc: fix go_spec spelling error
R=rsc, gri CC=golang-dev https://golang.org/cl/2985041
-rw-r--r--doc/go_spec.html2
1 files changed, 1 insertions, 1 deletions
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 .
<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.