summaryrefslogtreecommitdiffhomepage
path: root/es-es/go-es.html.markdown
diff options
context:
space:
mode:
authorJames Baxter <jebaxter@hotmail.co.uk>2014-08-19 12:56:27 +0100
committerJames Baxter <jebaxter@hotmail.co.uk>2014-08-19 12:56:27 +0100
commit4b5cbc91eb40d678c12d5bbb1d9fdbda9d22923d (patch)
tree387c079d3573a4869cf7fde80936ca7838b003a7 /es-es/go-es.html.markdown
parentd7ead48d1fa7c6ffb32aeeb6f289bf859a6bbef8 (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.markdown2
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.