Explorar o código

fix 14.4

删除多余的字
smart %!s(int64=10) %!d(string=hai) anos
pai
achega
88713d19d9
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      eBook/14.4.md

+ 1 - 1
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)