From 6cf75d569bd0dd33a041e37c59cb75d28664bd7b Mon Sep 17 00:00:00 2001 From: mo8it Date: Tue, 2 Jul 2024 14:28:08 +0200 Subject: Fix typos --- exercises/20_threads/threads3.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'exercises/20_threads') diff --git a/exercises/20_threads/threads3.rs b/exercises/20_threads/threads3.rs index 30ac8dd..8aa7291 100644 --- a/exercises/20_threads/threads3.rs +++ b/exercises/20_threads/threads3.rs @@ -18,7 +18,7 @@ impl Queue { fn send_tx(q: Queue, tx: mpsc::Sender) { // TODO: We want to send `tx` to both threads. But currently, it is moved - // into the frist thread. How could you solve this problem? + // into the first thread. How could you solve this problem? thread::spawn(move || { for val in q.first_half { println!("Sending {val:?}"); -- cgit v1.2.3