diff --git a/doc/go_spec.html b/doc/go_spec.html
index 6c0dc8bbd5..a2ad56b4f9 100644
--- a/doc/go_spec.html
+++ b/doc/go_spec.html
@@ -6158,7 +6158,7 @@ of make,
and no explicit initialization is provided, the variable or value is
given a default value. Each element of such a variable or value is
set to the zero value for its type: false for booleans,
-0 for integers, 0.0 for floats, ""
+0 for numeric types, ""
for strings, and nil for pointers, functions, interfaces, slices, channels, and maps.
This initialization is done recursively, so for instance each element of an
array of structs will have its fields zeroed if no value is specified.