summaryrefslogtreecommitdiffhomepage
path: root/ko-kr
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 /ko-kr
parentd7ead48d1fa7c6ffb32aeeb6f289bf859a6bbef8 (diff)
Fixed the statement that rune is an alias for uint32 in the translations
Diffstat (limited to 'ko-kr')
-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 e4eaee56..3012c04f 100644
--- a/ko-kr/go-kr.html.markdown
+++ b/ko-kr/go-kr.html.markdown
@@ -79,7 +79,7 @@ func learnTypes() {
개행을 포함할 수 있다.` // 같은 string 타입
// non-ASCII 리터럴. Go 소스는 UTF-8로 작성해야 한다.
- g := 'Σ' // 유니코드 코드 포인트를 담고 있고, uint32 타입의 가칭(alias)인 rune 타입
+ g := 'Σ' // 유니코드 코드 포인트를 담고 있고, int32 타입의 가칭(alias)인 rune 타입
f := 3.14195 // float64, an IEEE-754 64-bit 부동소수 타입
c := 3 + 4i // complex128, 내부적으로는 두 개의 float64 타입으로 표현됨