diff --git a/doc/go_spec.html b/doc/go_spec.html index ba0a475746..9962fa1c41 100644 --- a/doc/go_spec.html +++ b/doc/go_spec.html @@ -1,6 +1,6 @@ @@ -761,7 +761,8 @@ using a receiver of that type.
A boolean type represents the set of Boolean truth values
denoted by the predeclared constants true
-and false. The predeclared boolean type is bool.
+and false. The predeclared boolean type is bool;
+it is a defined type.
-To avoid portability issues all numeric types are distinct except
-byte, which is an alias for uint8, and
+To avoid portability issues all numeric types are defined
+types and thus distinct except
+byte, which is an alias for uint8, and
rune, which is an alias for int32.
Conversions
are required when different numeric types are mixed in an expression
@@ -825,7 +827,8 @@ A string type represents the set of string values.
A string value is a (possibly empty) sequence of bytes.
Strings are immutable: once created,
it is impossible to change the contents of a string.
-The predeclared string type is string.
+The predeclared string type is string;
+it is a defined type.