diff options
author | Geoff Liu <cangming.liu@gmail.com> | 2015-09-14 12:44:32 -0600 |
---|---|---|
committer | Geoff Liu <cangming.liu@gmail.com> | 2015-09-14 12:44:32 -0600 |
commit | 377396d82753f5c1793a79fb8f4ae029501ada1d (patch) | |
tree | a843bbc2f68d8386343afb8f56c8a78099223dcb /zh-cn | |
parent | e4cf586e99cc46475508d7708771eaabe9e85fd9 (diff) | |
parent | daa37af85646b1fa936777bfdcb9662836b66e5e (diff) |
Merge pull request #1233 from muxuezi/patch-2
A tiny bug
Diffstat (limited to 'zh-cn')
-rw-r--r-- | zh-cn/go-cn.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/zh-cn/go-cn.html.markdown b/zh-cn/go-cn.html.markdown index 3a461efe..49224085 100644 --- a/zh-cn/go-cn.html.markdown +++ b/zh-cn/go-cn.html.markdown @@ -239,7 +239,7 @@ func learnConcurrency() { go inc(0, c) // go is a statement that starts a new goroutine. go inc(10, c) go inc(-805, c) - // 从channel中独处结果并打印。 + // 从channel中读取结果并打印。 // 打印出什么东西是不可预知的。 fmt.Println(<-c, <-c, <-c) // channel在右边的时候,<-是读操作。 |