From: Robert Griesemer Date: Mon, 13 Jan 2020 21:01:28 +0000 (-0800) Subject: spec: uniformly format empty interfaces as "interface{}" X-Git-Tag: go1.14rc1~119 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=9ead772a921f0792db5630a3485a95c5a10c85df;p=gostls13.git spec: uniformly format empty interfaces as "interface{}" Fixes #36526. Change-Id: Ic51a287579f139422cc1a7b2fb82d6732114b031 Reviewed-on: https://go-review.googlesource.com/c/go/+/214597 Reviewed-by: Ian Lance Taylor --- diff --git a/doc/go_spec.html b/doc/go_spec.html index 4fff107c9b..953b2d9e68 100644 --- a/doc/go_spec.html +++ b/doc/go_spec.html @@ -1,6 +1,6 @@ @@ -5279,7 +5279,7 @@ for i, s := range a { } var key string -var val interface {} // element type of m is assignable to val +var val interface{} // element type of m is assignable to val m := map[string]int{"mon":0, "tue":1, "wed":2, "thu":3, "fri":4, "sat":5, "sun":6} for key, val = range m { h(key, val)