diff --git a/doc/go_spec.html b/doc/go_spec.html
index 992c4718a5..53f079a2f7 100644
--- a/doc/go_spec.html
+++ b/doc/go_spec.html
@@ -2513,7 +2513,8 @@ rules apply:
If a is not a map:
x must be an integer value; it is in range if 0 <= x < len(a),
+ x must be of integer type or untyped;
+ it is in range if 0 <= x < len(a),
otherwise it is out of rangeint
@@ -5095,7 +5096,7 @@ make(T, n) channel asynchronous channel of type T, buffer size n
-The size arguments n and m must be integer values.
+The size arguments n and m must be of integer type or untyped.
A constant size argument must be non-negative and
representable by a value of type int.
If both n and m are provided and are constant, then