diff --git a/doc/go_spec.html b/doc/go_spec.html index 098a92551a..dcc81ed628 100644 --- a/doc/go_spec.html +++ b/doc/go_spec.html @@ -1,6 +1,6 @@ @@ -1348,8 +1348,9 @@ ChannelType = ( "chan" | "chan" "<-" | "<-" "chan" ) ElementType . The optional <- operator specifies the channel direction, send or receive. If no direction is given, the channel is bidirectional. -A channel may be constrained only to send or only to receive by explicit -conversion or assignment. +A channel may be constrained only to send or only to receive by +assignment or +explicit conversion.

@@ -3624,7 +3625,7 @@ For signed integers, the operations +,
 -, *, /, and << may legally
 overflow and the resulting value exists and is deterministically defined
 by the signed integer representation, the operation, and its operands.
-Overflow does not cause a run-time panic. 
+Overflow does not cause a run-time panic.
 A compiler may not optimize code under the assumption that overflow does
 not occur. For instance, it may not assume that x < x + 1 is always true.