diff --git a/doc/go_spec.html b/doc/go_spec.html index 3f6ea8668c..f582231c50 100644 --- a/doc/go_spec.html +++ b/doc/go_spec.html @@ -4126,6 +4126,20 @@ A send on a closed channel proceeds by causing a run- A send on a nil channel blocks forever.

+

+Channels act as first-in-first-out queues. +For example, if a single goroutine sends on a channel values +that are received by a single goroutine, the values are received in the order sent. +

+ +

+A single channel may be used for send and receive +operations and calls to the built-in functions +cap and +len +by any number of goroutines without further synchronization. +

+
 ch <- 3