diff options
author | Philippe <pvlerick@gmail.com> | 2014-08-27 17:55:21 +0200 |
---|---|---|
committer | Philippe <pvlerick@gmail.com> | 2014-08-27 17:55:21 +0200 |
commit | b8ba98c86c78dd4d1a50831c86448ea2c85dcd13 (patch) | |
tree | b418d4c278bf06a1e70251c47f98e924509ef377 /zh-cn | |
parent | bfa04112e8e788bea9dc53cdef1659961c7882cb (diff) | |
parent | 013112b9b338d5f05d33e6d1d85e39e7f061285d (diff) |
Merge remote-tracking branch 'upstream/master'
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表示 |