summaryrefslogtreecommitdiffhomepage
path: root/pt-br
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 /pt-br
parentbfa04112e8e788bea9dc53cdef1659961c7882cb (diff)
parent013112b9b338d5f05d33e6d1d85e39e7f061285d (diff)
Merge remote-tracking branch 'upstream/master'
Diffstat (limited to 'pt-br')
-rw-r--r--pt-br/go-pt.html.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/pt-br/go-pt.html.markdown b/pt-br/go-pt.html.markdown
index 32c8fbdd..c7339831 100644
--- a/pt-br/go-pt.html.markdown
+++ b/pt-br/go-pt.html.markdown
@@ -75,7 +75,7 @@ func learnTypes() {
pode incluir quebras de linha.` // mesmo tipo string
// literal não-ASCII. A linguagem Go utiliza de raiz a codificação UTF-8.
- g := 'Σ' // tipo rune, um alias para uint32, que contém um código unicode
+ g := 'Σ' // tipo rune, um alias para int32, que contém um código unicode
f := 3.14195 // float64, número de vírgula flutuante de 64bit (IEEE-754)
c := 3 + 4i // complex128, representado internamente com dois float64s