소스 검색

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
 }