From 9626180918d834e0a6eb56e28c6ca201e39dbcba Mon Sep 17 00:00:00 2001 From: Peter Mundy Date: Tue, 9 Nov 2010 08:46:13 -0800 Subject: [PATCH] doc: fix go_spec spelling error R=rsc, gri CC=golang-dev https://golang.org/cl/2985041 --- doc/go_spec.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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. -- 2.50.0