diff options
author | James Baxter <jebaxter@hotmail.co.uk> | 2014-08-19 12:56:27 +0100 |
---|---|---|
committer | James Baxter <jebaxter@hotmail.co.uk> | 2014-08-19 12:56:27 +0100 |
commit | 4b5cbc91eb40d678c12d5bbb1d9fdbda9d22923d (patch) | |
tree | 387c079d3573a4869cf7fde80936ca7838b003a7 /es-es/go-es.html.markdown | |
parent | d7ead48d1fa7c6ffb32aeeb6f289bf859a6bbef8 (diff) |
Fixed the statement that rune is an alias for uint32 in the translations
Diffstat (limited to 'es-es/go-es.html.markdown')
-rw-r--r-- | es-es/go-es.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/es-es/go-es.html.markdown b/es-es/go-es.html.markdown index e788e810..86de33ec 100644 --- a/es-es/go-es.html.markdown +++ b/es-es/go-es.html.markdown @@ -77,7 +77,7 @@ func learnTypes() { saltos de línea.` // mismo tipo cadena // Literal no ASCII. Los fuentes de Go son UTF-8. - g := 'Σ' // Tipo rune, un alias de uint32, alberga un punto unicode. + g := 'Σ' // Tipo rune, un alias de int32, alberga un punto unicode. f := 3.14195 // float64, el estándar IEEE-754 de coma flotante 64-bit. c := 3 + 4i // complex128, representado internamente por dos float64. // Sintaxis Var con inicializadores. |