From 88713d19d9f53253ab2b419aa4371ec6b3260f61 Mon Sep 17 00:00:00 2001 From: smart Date: Sun, 24 Jan 2016 17:04:46 +0800 Subject: [PATCH] fix 14.4 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 删除多余的字 --- eBook/14.4.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eBook/14.4.md b/eBook/14.4.md index b426d7e..834973c 100644 --- a/eBook/14.4.md +++ b/eBook/14.4.md @@ -128,7 +128,7 @@ Received on channel 1: 94348 - `channel1` 用来接收极坐标 - `channel2` 用来接收笛卡尔坐标 -转换过程需要在协程中进行,从 channel1 中读取然后发哦送到 channel2。实际上做这种计算不提倡使用协程和通道,但是如果运算量很大很耗时,这种方案设计就非常合适了。 +转换过程需要在协程中进行,从 channel1 中读取然后发送到 channel2。实际上做这种计算不提倡使用协程和通道,但是如果运算量很大很耗时,这种方案设计就非常合适了。 练习 14.11: [concurrent_pi.go](exercises/chapter_14/concurrent_pi.go) / [concurrent_pi2.go](exercises/chapter_14/concurrent_pi2.go)