From 83cf1cad62301505e474751e13643837d6a6f814 Mon Sep 17 00:00:00 2001 From: Jerry Wu Date: Thu, 20 Jun 2024 16:21:53 +0800 Subject: [PATCH] Update 11_locks.md (#94) Suggest removing an extra semicolon. --- book/src/07_threads/11_locks.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 | -- 2.45.2