mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2025-08-11 01:04:10 +02:00
Merge pull request #311 from eXeC64/patch-1
Corrected comment: utf-8 → unicode
This commit is contained in:
@@ -71,7 +71,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 UTF-8 code point
|
||||
g := 'Σ' // rune type, an alias for uint32, 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 float64s
|
||||
|
Reference in New Issue
Block a user