From f8404ee3e1a19cff8c32b7b85889805f8325b81c Mon Sep 17 00:00:00 2001 From: Gustavo Niemeyer Date: Fri, 4 Feb 2011 09:29:08 -0800 Subject: [PATCH] spec: fix Typeof() return type R=golang-dev, gri CC=golang-dev https://golang.org/cl/4121058 --- doc/go_spec.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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{}