]> Cypherpunks repositories - gostls13.git/commitdiff
doc: fix go_spec spelling error
authorPeter Mundy <go.peter.90@gmail.com>
Tue, 9 Nov 2010 16:46:13 +0000 (08:46 -0800)
committerRobert Griesemer <gri@golang.org>
Tue, 9 Nov 2010 16:46:13 +0000 (08:46 -0800)
R=rsc, gri
CC=golang-dev
https://golang.org/cl/2985041

doc/go_spec.html

index e3346b271d587c2710c2718df174629ae9bbbbc1..d0db9d8b9e665a82ae2cd54fecc2244668cab702 100644 (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.