删除多余的字
@@ -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)