Ver código fonte

update comment (#747)

cashewnut 6 anos atrás
pai
commit
173fcc518c
1 arquivos alterados com 1 adições e 1 exclusões
  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
 }