1
0
Fork 0
mirror of https://github.com/notohh/rustlings.git synced 2025-09-16 19:13:14 -04:00

chore: Fix a couple broken book links

This commit is contained in:
Russell Cousineau 2019-06-06 20:17:22 -07:00
commit 63c133e4a3
12 changed files with 16 additions and 16 deletions
exercises/threads

View file

@ -45,7 +45,7 @@ fn main() {
// to **immutable** data. But we want to *change* the number of `jobs_completed`
// so we'll need to also use another type that will only allow one thread to
// mutate the data at a time. Take a look at this section of the book:
// https://doc.rust-lang.org/stable/book/ch16-03-shared-state.html#atomic-reference-counting-with-arct
// https://doc.rust-lang.org/book/ch16-03-shared-state.html#atomic-reference-counting-with-arct
// and keep scrolling if you'd like more hints :)