We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 0ed3844 + 6862cb9 commit 7d50192Copy full SHA for 7d50192
src/ch16-02-message-passing.md
@@ -3,8 +3,8 @@
3
One increasingly popular approach to ensuring safe concurrency is *message
4
passing*, where threads or actors communicate by sending each other messages
5
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.”
+documentation](https://golang.org/doc/effective_go.html#concurrency):
+“Do not communicate by sharing memory; instead, share memory by communicating.”
8
9
One major tool Rust has for accomplishing message-sending concurrency is the
10
*channel*, a programming concept that Rust’s standard library provides an
0 commit comments