From: Jerry Wu Date: Thu, 20 Jun 2024 08:21:53 +0000 (+0800) Subject: Update 11_locks.md (#94) X-Git-Url: http://git.euphorik.ch/?a=commitdiff_plain;h=83cf1cad62301505e474751e13643837d6a6f814;p=rust_exercises.git Update 11_locks.md (#94) Suggest removing an extra semicolon. --- diff --git a/book/src/07_threads/11_locks.md b/book/src/07_threads/11_locks.md index 2cab7de..519cc95 100644 --- a/book/src/07_threads/11_locks.md +++ b/book/src/07_threads/11_locks.md @@ -99,7 +99,7 @@ fn main() { let guard = lock.lock().unwrap(); spawn(move || { - receiver.recv().unwrap();; + receiver.recv().unwrap(); }); // Try to send the guard over the channel @@ -118,7 +118,7 @@ error[E0277]: `MutexGuard<'_, i32>` cannot be sent between threads safely | _-----_^ | | | | | required by a bound introduced by this call -11 | | receiver.recv().unwrap();; +11 | | receiver.recv().unwrap(); 12 | | }); | |_^ `MutexGuard<'_, i32>` cannot be sent between threads safely |