diff --git a/doc/go_spec.html b/doc/go_spec.html index 4f94b14fa5..724b044aa4 100644 --- a/doc/go_spec.html +++ b/doc/go_spec.html @@ -1,6 +1,6 @@ @@ -3732,7 +3732,7 @@ be replaced by a bitwise AND operation:

The shift operators shift the left operand by the shift count specified by the -right operand, which must be positive. If the shift count is negative at run time, +right operand, which must be non-negative. If the shift count is negative at run time, a run-time panic occurs. The shift operators implement arithmetic shifts if the left operand is a signed integer and logical shifts if it is an unsigned integer.