<!--{
"Title": "The Go Programming Language Specification",
- "Subtitle": "Version of May 20, 2013",
+ "Subtitle": "Version of May 31, 2013",
"Path": "/ref/spec"
}-->
and the type of the receive operation is the element type of the channel.
The expression blocks until a value is available.
Receiving from a <code>nil</code> channel blocks forever.
-Receiving from a <a href="#Close">closed</a> channel always succeeds,
-immediately returning the element type's <a href="#The_zero_value">zero
-value</a>.
+A receive operation on a <a href="#Close">closed</a> channel can always proceed
+immediately, yielding the element type's <a href="#The_zero_value">zero value</a>.
</p>
<pre>