aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnthony Eufemio <anthony.eufemio@gmail.com>2012-09-22 05:55:17 +1000
committerBrad Fitzpatrick <bradfitz@golang.org>2012-09-22 05:55:17 +1000
commit1a18d27e43efc8cfbede7deec2defeaf58df856a (patch)
treec08b869bd35e05659d6817b7e9b4816eeda62598
parent86f623620502304da0f1060088b285027802a4b8 (diff)
downloadgo-1a18d27e43efc8cfbede7deec2defeaf58df856a.tar.gz
go-1a18d27e43efc8cfbede7deec2defeaf58df856a.zip
[release-branch.go1] builtin: Changed documentation for rune type.
««« backport 6cfab3a0935e builtin: Changed documentation for rune type. Fixes #4093. R=golang-dev, bradfitz, r CC=golang-dev https://golang.org/cl/6536047 »»»
-rw-r--r--src/pkg/builtin/builtin.go3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/pkg/builtin/builtin.go b/src/pkg/builtin/builtin.go
index e81616ca41..a30943b894 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