Skip to content

Commit 198a06f

Browse files
authored
Merge pull request #15 from LuhangRui/patch-1
修正:贡献数据->共享数据
2 parents 5bd4957 + 66c614e commit 198a06f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/guide/concepts/golang/9-goroutine.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ func main() {
6161

6262
### Goroutine 和 Channel
6363

64-
我们知道,无论是在线程还是协程,在运行的时候都会遇到贡献数据或传递数据的情况,在 Golang 中,我们可以通过 Channel 来实现 Goroutine 之间的通信。
64+
我们知道,无论是在线程还是协程,在运行的时候都会遇到共享数据或传递数据的情况,在 Golang 中,我们可以通过 Channel 来实现 Goroutine 之间的通信。
6565

6666
```go
6767
package main

0 commit comments

Comments
 (0)