From ffc52b698fa6fb5710b5be31e984b9485e11ecf9 Mon Sep 17 00:00:00 2001 From: glight2000 <173959153@qq.com> Date: Tue, 29 Dec 2015 11:24:54 +0800 Subject: [PATCH] Update 14.3.md --- eBook/14.3.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eBook/14.3.md b/eBook/14.3.md index b3d12fc..e2e2372 100644 --- a/eBook/14.3.md +++ b/eBook/14.3.md @@ -94,7 +94,7 @@ for { 使用for-range语句来读取通道是更好的办法,因为这会自动检测通道是否关闭: ```go for input := range ch { - process(input) + process(input) } ``` 阻塞和生产者-消费者模式: