Skip to content

Commit

Permalink
修正:贡献数据->共享数据
Browse files Browse the repository at this point in the history
  • Loading branch information
LuhangRui committed Aug 11, 2024
1 parent 5bd4957 commit 66c614e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/guide/concepts/golang/9-goroutine.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ func main() {

### Goroutine 和 Channel

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

```go
package main
Expand Down

0 comments on commit 66c614e

Please sign in to comment.