diff options
author | Levi Bostian <levi.bostian@gmail.com> | 2014-08-19 10:47:52 -0500 |
---|---|---|
committer | Levi Bostian <levi.bostian@gmail.com> | 2014-08-19 10:47:52 -0500 |
commit | 43c983d54abc5a116bb5ea5b7f3894313a9c796c (patch) | |
tree | 387c079d3573a4869cf7fde80936ca7838b003a7 /de-de | |
parent | cdd139136c2dbdaa5464ef6b72dcd7efc92ce805 (diff) | |
parent | 4b5cbc91eb40d678c12d5bbb1d9fdbda9d22923d (diff) |
Merge pull request #724 from jameseb7/master
[go/*] rune is actually an alias for int32, not uint32
Diffstat (limited to 'de-de')
-rw-r--r-- | de-de/go-de.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/de-de/go-de.html.markdown b/de-de/go-de.html.markdown index 8c2f58dd..ca27fdc7 100644 --- a/de-de/go-de.html.markdown +++ b/de-de/go-de.html.markdown @@ -79,7 +79,7 @@ func learnTypes() { Zeilenumbrüche beinhalten.` // Selber Zeichenketten-Typ // nicht-ASCII Literal. Go Quelltext ist UTF-8 kompatibel. - g := 'Σ' // Ein Runen-Typ, alias uint32, gebraucht für unicode code points. + g := 'Σ' // Ein Runen-Typ, alias int32, gebraucht für unicode code points. f := 3.14195 // float64, eine IEEE-754 64-bit Dezimalzahl c := 3 + 4i // complex128, besteht intern aus zwei float64-er |