From e8de8b58caf52115be0d5d11282c504da8642238 Mon Sep 17 00:00:00 2001 From: Anthony Eufemio Date: Tue, 18 Sep 2012 11:01:10 -0700 Subject: [PATCH] builtin: Changed documentation for rune type. Fixes #4093. R=golang-dev, bradfitz, r CC=golang-dev https://golang.org/cl/6536047 --- src/pkg/builtin/builtin.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/pkg/builtin/builtin.go b/src/pkg/builtin/builtin.go index e81616ca418..a30943b894f 100644 --- a/src/pkg/builtin/builtin.go +++ b/src/pkg/builtin/builtin.go @@ -81,9 +81,8 @@ type uintptr uintptr // integer values. type byte byte -// rune is an alias for int and is equivalent to int in all ways. It is +// rune is an alias for int32 and is equivalent to int32 in all ways. It is // used, by convention, to distinguish character values from integer values. -// In a future version of Go, it will change to an alias of int32. type rune rune // Type is here for the purposes of documentation only. It is a stand-in