From e269539a426d01bc44d8656ca6bc39464c77a3d6 Mon Sep 17 00:00:00 2001 From: LukeMathWalker <20745048+LukeMathWalker@users.noreply.github.com> Date: Thu, 16 May 2024 10:42:45 +0200 Subject: [PATCH] Typo. --- book/src/07_threads/05_channels.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/book/src/07_threads/05_channels.md b/book/src/07_threads/05_channels.md index 91f4cab..c900fab 100644 --- a/book/src/07_threads/05_channels.md +++ b/book/src/07_threads/05_channels.md @@ -30,7 +30,7 @@ We can solve the issue using **channels**. ## Channels -Rust's standard library provides **multi-consumer, single-consumer** (mpsc) channels +Rust's standard library provides **multi-producer, single-consumer** (mpsc) channels in its `std::sync::mpsc` module. There are two channel flavours: bounded and unbounded. We'll stick to the unbounded version for now, but we'll discuss the pros and cons later on. -- 2.45.2