summaryrefslogtreecommitdiffhomepage
path: root/ko-kr/go-kr.html.markdown
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 /ko-kr/go-kr.html.markdown
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 'ko-kr/go-kr.html.markdown')
-rw-r--r--ko-kr/go-kr.html.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/ko-kr/go-kr.html.markdown b/ko-kr/go-kr.html.markdown
index 3012c04f..42360294 100644
--- a/ko-kr/go-kr.html.markdown
+++ b/ko-kr/go-kr.html.markdown
@@ -81,7 +81,7 @@ func learnTypes() {
// non-ASCII 리터럴. Go 소스는 UTF-8로 작성해야 한다.
g := 'Σ' // 유니코드 코드 포인트를 담고 있고, int32 타입의 가칭(alias)인 rune 타입
- f := 3.14195 // float64, an IEEE-754 64-bit 부동소수 타입
+ f := 3.14159 // float64, an IEEE-754 64-bit 부동소수 타입
c := 3 + 4i // complex128, 내부적으로는 두 개의 float64 타입으로 표현됨
// 초기값과 함께 사용하는 var 키워드.