From 2e47ed4c50c5fe3ac0b375eafc4f20159811e957 Mon Sep 17 00:00:00 2001 From: "Jun \"Mark\" Hahn" <21152231+TangoEnSkai@users.noreply.github.com> Date: Fri, 18 Oct 2019 03:32:23 +0900 Subject: [PATCH 1/4] Update README.md --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index da971d6..5ce5611 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,8 @@ Translated in Korean -Currently WIP, but translation will done by 20th of Oct, 2019 +First translation done with original doc on 17th of Oct, 2019 from [uber-go/guide](https://github.com/uber-go/guide) +Please feel free to fork and PR if you find any updates, issues or improvement. --- From fe7bcf4505e57249f24204cf962942024b819f1a Mon Sep 17 00:00:00 2001 From: "Jun \"Mark\" Hahn" <21152231+TangoEnSkai@users.noreply.github.com> Date: Fri, 18 Oct 2019 03:37:12 +0900 Subject: [PATCH 2/4] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 5ce5611..80e3aa5 100644 --- a/README.md +++ b/README.md @@ -2,8 +2,8 @@ Translated in Korean -First translation done with original doc on 17th of Oct, 2019 from [uber-go/guide](https://github.com/uber-go/guide) -Please feel free to fork and PR if you find any updates, issues or improvement. +- First translation done with original doc on 17th of Oct, 2019 from [uber-go/guide](https://github.com/uber-go/guide) +- Please feel free to fork and PR if you find any updates, issues or improvement. --- From d244f0a7b40d52ed0c6a0d476653e080e415552c Mon Sep 17 00:00:00 2001 From: "Jun \"Mark\" Hahn" <21152231+TangoEnSkai@users.noreply.github.com> Date: Fri, 18 Oct 2019 10:31:03 +0900 Subject: [PATCH 3/4] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 80e3aa5..74a1cda 100644 --- a/README.md +++ b/README.md @@ -367,7 +367,7 @@ func (s *Stats) Snapshot() map[string]int { } // snapshot은 더이상 뮤텍스에 의해서 보호되지 않는다. -// 따라서, snapshot에 대한 access가 안정되지 않는다. (any access to the snapshot is racy.) +// 따라서, snapshot에 대한 접근은 레이스 컨디션을 야기할 수 있다. (any access to the snapshot is racy.) snapshot := stats.Snapshot() ``` From 9c360356b6101c5b01e9b6a822b9268465b52a0a Mon Sep 17 00:00:00 2001 From: "Jun \"Mark\" Hahn" <21152231+TangoEnSkai@users.noreply.github.com> Date: Fri, 18 Oct 2019 10:42:09 +0900 Subject: [PATCH 4/4] Fix broken table --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 74a1cda..55c6955 100644 --- a/README.md +++ b/README.md @@ -340,7 +340,7 @@ trips[0] = ... - #### 슬라이스(Slices)와 맵(Maps)의 리턴