From 173fcc518c44642637e27136e368dbd9e593a1dc Mon Sep 17 00:00:00 2001 From: cashewnut Date: Sat, 14 Dec 2019 15:38:44 +0800 Subject: [PATCH] update comment (#747) --- eBook/14.2.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eBook/14.2.md b/eBook/14.2.md index 8790c1f..fae46b1 100644 --- a/eBook/14.2.md +++ b/eBook/14.2.md @@ -267,7 +267,7 @@ func compute(ch chan int){ func main(){ ch := make(chan int) // allocate a channel. - go compute(ch) // stat something in a goroutines + go compute(ch) // start something in a goroutines doSomethingElseForAWhile() result := <- ch }