Skip to content

Commit 7d50192

Browse files
authored
Merge pull request #2285 from aDotInTheVoid/patch-1
Update go docs link
2 parents 0ed3844 + 6862cb9 commit 7d50192

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/ch16-02-message-passing.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
One increasingly popular approach to ensuring safe concurrency is *message
44
passing*, where threads or actors communicate by sending each other messages
55
containing data. Here’s the idea in a slogan from [the Go language
6-
documentation](http://golang.org/doc/effective_go.html): “Do not communicate by
7-
sharing memory; instead, share memory by communicating.”
6+
documentation](https://golang.org/doc/effective_go.html#concurrency):
7+
“Do not communicate by sharing memory; instead, share memory by communicating.”
88

99
One major tool Rust has for accomplishing message-sending concurrency is the
1010
*channel*, a programming concept that Rust’s standard library provides an

0 commit comments

Comments
 (0)