summaryrefslogtreecommitdiffhomepage
path: root/es-es/go-es.html.markdown
diff options
context:
space:
mode:
authorPhilippe <pvlerick@gmail.com>2014-08-27 17:55:21 +0200
committerPhilippe <pvlerick@gmail.com>2014-08-27 17:55:21 +0200
commitb8ba98c86c78dd4d1a50831c86448ea2c85dcd13 (patch)
treeb418d4c278bf06a1e70251c47f98e924509ef377 /es-es/go-es.html.markdown
parentbfa04112e8e788bea9dc53cdef1659961c7882cb (diff)
parent013112b9b338d5f05d33e6d1d85e39e7f061285d (diff)
Merge remote-tracking branch 'upstream/master'
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.