update old book references to the second edition of the book

This commit is contained in:
Lisa Kosiachenko
2018-07-20 11:39:49 -07:00
parent 2fa0fa17f9
commit e48a1a063d
8 changed files with 22 additions and 18 deletions

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/concurrency.html#safe-shared-mutable-state
// https://doc.rust-lang.org/stable/book/second-edition/ch16-03-shared-state.html#atomic-reference-counting-with-arct
// and keep scrolling if you'd like more hints :)