summaryrefslogtreecommitdiffhomepage
path: root/cs-cz
diff options
context:
space:
mode:
authorqlikwer <qlikwer@gmail.com>2024-02-12 17:18:44 +0500
committerGitHub <noreply@github.com>2024-02-12 13:18:44 +0100
commit3914133997b74a9fedf402d2cf345125f0c59ca0 (patch)
tree3536e6b50e921118e918479799ab4db905ff9549 /cs-cz
parent1c33cd1a9a09b310937f753920ccd149550a71c2 (diff)
corrected an error in the number pi (#4839)
* Update go-de.html.markdown corrected an error in the number pi * Update go.html.markdown corrected an error in the number pi * Update go-pt.html.markdown corrected an error in the number pi * Update go-hu.html.markdown corrected an error in the number pi * Update go-cn.html.markdown corrected an error in the number pi * Update go-kr.html.markdown corrected an error in the number pi * Update go-ca.html.markdown corrected an error in the number pi * Update go-es.html.markdown corrected an error in the number pi * Update go-fi.html.markdown corrected an error in the number pi * Update go-fr.html.markdown corrected an error in the number pi * Update go-ru.html.markdown corrected an error in the number pi * Update go-it.html.markdown corrected an error in the number pi * Update go.html.markdown corrected an error in the number pi
Diffstat (limited to 'cs-cz')
-rw-r--r--cs-cz/go.html.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/cs-cz/go.html.markdown b/cs-cz/go.html.markdown
index cef8c5ab..4f8569bf 100644
--- a/cs-cz/go.html.markdown
+++ b/cs-cz/go.html.markdown
@@ -90,7 +90,7 @@ může obsahovat nové řádky` // Opět typ řetězec.
// Můžeme použít ne ASCII znaky, Go používá UTF-8.
g := 'Σ' // type runa, což je alias na int32 a ukládá se do něj znak UTF-8
- f := 3.14195 // float64, je IEEE-754 64-bit číslem s plovoucí čárkou.
+ f := 3.14159 // float64, je IEEE-754 64-bit číslem s plovoucí čárkou.
c := 3 + 4i // complex128, interně uložené jako dva float64.
// takhle vypadá var s inicializací