summaryrefslogtreecommitdiff
path: root/exercises/threads
diff options
context:
space:
mode:
authorRussell Cousineau <miller.time.baby@gmail.com>2019-06-06 20:17:22 -0700
committerRussell Cousineau <miller.time.baby@gmail.com>2019-06-11 07:13:05 -0700
commit63c133e4a3f48bc15a75797dcea98bcf2f81cf2e (patch)
treea547970c3311411a11b43491206a82db77cb94d3 /exercises/threads
parentb8d59d699bed76b6be95d1ed41881d00d4b0d533 (diff)
chore: Fix a couple broken book links
Diffstat (limited to 'exercises/threads')
-rw-r--r--exercises/threads/threads1.rs2
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 :)