summaryrefslogtreecommitdiffhomepage
path: root/go.html.markdown
diff options
context:
space:
mode:
authorLevi Bostian <levi.bostian@gmail.com>2014-08-19 10:47:52 -0500
committerLevi Bostian <levi.bostian@gmail.com>2014-08-19 10:47:52 -0500
commit43c983d54abc5a116bb5ea5b7f3894313a9c796c (patch)
tree387c079d3573a4869cf7fde80936ca7838b003a7 /go.html.markdown
parentcdd139136c2dbdaa5464ef6b72dcd7efc92ce805 (diff)
parent4b5cbc91eb40d678c12d5bbb1d9fdbda9d22923d (diff)
Merge pull request #724 from jameseb7/master
[go/*] rune is actually an alias for int32, not uint32
Diffstat (limited to 'go.html.markdown')
-rw-r--r--go.html.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/go.html.markdown b/go.html.markdown
index 656b1051..f7bd8ee3 100644
--- a/go.html.markdown
+++ b/go.html.markdown
@@ -78,7 +78,7 @@ func learnTypes() {
can include line breaks.` // Same string type.
// Non-ASCII literal. Go source is UTF-8.
- g := 'Σ' // rune type, an alias for uint32, holds a unicode code point.
+ g := 'Σ' // rune type, an alias for int32, holds a unicode code point.
f := 3.14195 // float64, an IEEE-754 64-bit floating point number.
c := 3 + 4i // complex128, represented internally with two float64's.