diff options
| author | Russell Cousineau <miller.time.baby@gmail.com> | 2019-06-06 20:17:22 -0700 |
|---|---|---|
| committer | Russell Cousineau <miller.time.baby@gmail.com> | 2019-06-11 07:13:05 -0700 |
| commit | 63c133e4a3f48bc15a75797dcea98bcf2f81cf2e (patch) | |
| tree | a547970c3311411a11b43491206a82db77cb94d3 /exercises/threads/threads1.rs | |
| parent | b8d59d699bed76b6be95d1ed41881d00d4b0d533 (diff) | |
chore: Fix a couple broken book links
Diffstat (limited to 'exercises/threads/threads1.rs')
| -rw-r--r-- | exercises/threads/threads1.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/exercises/threads/threads1.rs b/exercises/threads/threads1.rs index 9b9cdcd..7983668 100644 --- a/exercises/threads/threads1.rs +++ b/exercises/threads/threads1.rs @@ -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 :) |
