From 45c32d8e4122ecb7468995a270755c05c456320f Mon Sep 17 00:00:00 2001 From: Simon Morgan Date: Mon, 14 Oct 2024 22:41:16 +0100 Subject: [PATCH] Fix typo --- exercises/07_threads/05_channels/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/07_threads/05_channels/src/lib.rs b/exercises/07_threads/05_channels/src/lib.rs index f049bf387..175d1dd14 100644 --- a/exercises/07_threads/05_channels/src/lib.rs +++ b/exercises/07_threads/05_channels/src/lib.rs @@ -7,7 +7,7 @@ pub enum Command { Insert(todo!()), } -// Start the system by spawning the server the thread. +// Start the system by spawning the server thread. // It returns a `Sender` instance which can then be used // by one or more clients to interact with the server. pub fn launch() -> Sender {