From: Gustavo Niemeyer Date: Fri, 4 Feb 2011 17:29:08 +0000 (-0800) Subject: spec: fix Typeof() return type X-Git-Tag: weekly.2011-02-15~94 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=f8404ee3e1a19cff8c32b7b85889805f8325b81c;p=gostls13.git spec: fix Typeof() return type R=golang-dev, gri CC=golang-dev https://golang.org/cl/4121058 --- diff --git a/doc/go_spec.html b/doc/go_spec.html index 2c6046a7c5..79548be40b 100644 --- a/doc/go_spec.html +++ b/doc/go_spec.html @@ -5049,8 +5049,8 @@ func Alignof(variable ArbitraryType) int func Offsetof(selector ArbitraryType) int func Sizeof(variable ArbitraryType) int -func Reflect(val interface {}) (typ runtime.Type, addr uintptr) -func Typeof(val interface {}) reflect.Type +func Reflect(val interface{}) (typ runtime.Type, addr uintptr) +func Typeof(val interface{}) (typ interface{}) func Unreflect(typ runtime.Type, addr uintptr) interface{}