diff options
author | Levi Bostian <levi.bostian@gmail.com> | 2014-08-19 10:47:52 -0500 |
---|---|---|
committer | Levi Bostian <levi.bostian@gmail.com> | 2014-08-19 10:47:52 -0500 |
commit | 43c983d54abc5a116bb5ea5b7f3894313a9c796c (patch) | |
tree | 387c079d3573a4869cf7fde80936ca7838b003a7 /zh-cn | |
parent | cdd139136c2dbdaa5464ef6b72dcd7efc92ce805 (diff) | |
parent | 4b5cbc91eb40d678c12d5bbb1d9fdbda9d22923d (diff) |
Merge pull request #724 from jameseb7/master
[go/*] rune is actually an alias for int32, not uint32
Diffstat (limited to 'zh-cn')
-rw-r--r-- | zh-cn/go-cn.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/zh-cn/go-cn.html.markdown b/zh-cn/go-cn.html.markdown index 4a87dc21..9f6a8c15 100644 --- a/zh-cn/go-cn.html.markdown +++ b/zh-cn/go-cn.html.markdown @@ -68,7 +68,7 @@ func learnTypes() { can include line breaks.` // 同样是String类型 // 非ascii字符。Go使用UTF-8编码。 - g := 'Σ' // rune类型,uint32的别名,使用UTF-8编码 + g := 'Σ' // rune类型,int32的别名,使用UTF-8编码 f := 3.14195 // float64类型,IEEE-754 64位浮点数 c := 3 + 4i // complex128类型,内部使用两个float64表示 |