]> Cypherpunks repositories - gostls13.git/commitdiff
builtin: Changed documentation for rune type.
authorAnthony Eufemio <anthony.eufemio@gmail.com>
Tue, 18 Sep 2012 18:01:10 +0000 (11:01 -0700)
committerBrad Fitzpatrick <bradfitz@golang.org>
Tue, 18 Sep 2012 18:01:10 +0000 (11:01 -0700)
Fixes #4093.

R=golang-dev, bradfitz, r
CC=golang-dev
https://golang.org/cl/6536047

src/pkg/builtin/builtin.go

index e81616ca41894e3b3bba5405e72d5a1525269490..a30943b894f13a18f602077412520dcee741ea54 100644 (file)
@@ -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