summaryrefslogtreecommitdiffhomepage
path: root/pt-br
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 /pt-br
parentd7ead48d1fa7c6ffb32aeeb6f289bf859a6bbef8 (diff)
Fixed the statement that rune is an alias for uint32 in the translations
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