We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5bd4957 + 66c614e commit 198a06fCopy full SHA for 198a06f
src/guide/concepts/golang/9-goroutine.md
@@ -61,7 +61,7 @@ func main() {
61
62
### Goroutine 和 Channel
63
64
-我们知道,无论是在线程还是协程,在运行的时候都会遇到贡献数据或传递数据的情况,在 Golang 中,我们可以通过 Channel 来实现 Goroutine 之间的通信。
+我们知道,无论是在线程还是协程,在运行的时候都会遇到共享数据或传递数据的情况,在 Golang 中,我们可以通过 Channel 来实现 Goroutine 之间的通信。
65
66
```go
67
package main
0 commit comments