1
0
mirror of https://github.com/golang/go synced 2024-11-24 07:10:18 -07:00

doc: fix go_spec spelling error

R=rsc, gri
CC=golang-dev
https://golang.org/cl/2985041
This commit is contained in:
Peter Mundy 2010-11-09 08:46:13 -08:00 committed by Robert Griesemer
parent 49fdfe21dd
commit 9626180918

View File

@ -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.