Skip to content

Commit bd22456

Browse files
authored
FIx rust-book-sync link
1 parent 7e5ff94 commit bd22456

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

docs/src/concepts/futures.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ Note how we avoided any word like *"thread"*, but instead opted for "computation
1515

1616
`Send` and `Sync` can be composed in interesting fashions, but that's beyond the scope here. You can find examples in the [Rust Book][rust-book-sync].
1717

18+
[rust-book-sync]: https://doc.rust-lang.org/stable/book/ch16-04-extensible-concurrency-sync-and-send.html
19+
1820
To sum up: Rust gives us the ability to safely abstract over important properties of concurrent programs: their data sharing. It does so in a very lightweight fashion: the language itself only knows about the two markers `Send` and `Sync` and helps us a little by deriving them itself, when possible. The rest is a library concern.
1921

2022
## An easy view of computation

0 commit comments

Comments
 (0)