瀏覽代碼

update comment (#747)

cashewnut 6 年之前
父節點
當前提交
173fcc518c
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      eBook/14.2.md

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