diff --git a/doc/go1.13.html b/doc/go1.13.html index 63ba880250..547fdd9933 100644 --- a/doc/go1.13.html +++ b/doc/go1.13.html @@ -41,13 +41,13 @@ Do not send CLs removing the interior tags from such phrases. Go 1.13 supports a more uniform and modernized set of number literal prefixes.
0b or 0B indicates a binary integer literal
such as 0b1011.
0o or 0O indicates an octal integer literal
such as 0o660.
The existing octal notation indicated by a leading 0 followed by
@@ -55,7 +55,7 @@ Do not send CLs removing the interior tags from such phrases.
0x or 0X may now be used to express the mantissa of a
floating-point number in hexadecimal format such as 0x1.0p-1021.
A hexadecimal floating-point number must always have an exponent, written as the letter
@@ -64,7 +64,7 @@ Do not send CLs removing the interior tags from such phrases.
i may now be used with any (binary, decimal, hexadecimal)
integer or floating-point literal.
Per the signed shift counts proposal
- Go 1.13 removes the restriction that a shift count
+ Go 1.13 removes the restriction that a shift count
must be unsigned. This change eliminates the need for many artificial uint conversions,
solely introduced to satisfy this (now removed) restriction of the << and >> operators.