diff options
author | James Baxter <jebaxter@hotmail.co.uk> | 2014-08-19 12:06:02 +0100 |
---|---|---|
committer | James Baxter <jebaxter@hotmail.co.uk> | 2014-08-19 12:06:02 +0100 |
commit | d7ead48d1fa7c6ffb32aeeb6f289bf859a6bbef8 (patch) | |
tree | 57559fc7bb2d71824f0bc86705ed41af84928670 /go.html.markdown | |
parent | cdd139136c2dbdaa5464ef6b72dcd7efc92ce805 (diff) |
Corrected the statement that rune is an alias for uint32 to say int32
Diffstat (limited to 'go.html.markdown')
-rw-r--r-- | go.html.markdown | 2 |
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. |