From 3914133997b74a9fedf402d2cf345125f0c59ca0 Mon Sep 17 00:00:00 2001 From: qlikwer Date: Mon, 12 Feb 2024 17:18:44 +0500 Subject: 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 --- es-es/go-es.html.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'es-es/go-es.html.markdown') diff --git a/es-es/go-es.html.markdown b/es-es/go-es.html.markdown index 78267695..2d1dbce7 100644 --- a/es-es/go-es.html.markdown +++ b/es-es/go-es.html.markdown @@ -88,7 +88,7 @@ saltos de línea.` // mismo tipo cadena // Literal no ASCII. Los ficheros fuente de Go son UTF-8. g := 'Σ' // Tipo rune, un alias de int32, alberga un carácter unicode. - f := 3.14195 // float64, el estándar IEEE-754 de coma flotante 64-bit. + f := 3.14159 // float64, el estándar IEEE-754 de coma flotante 64-bit. c := 3 + 4i // complex128, representado internamente por dos float64. // Sintaxis var con iniciadores. var u uint = 7 // Sin signo, pero la implementación depende del tamaño -- cgit v1.2.3