From: LukeMathWalker <20745048+LukeMathWalker@users.noreply.github.com> Date: Thu, 16 May 2024 08:42:45 +0000 (+0200) Subject: Typo. X-Git-Url: http://git.euphorik.ch/?a=commitdiff_plain;h=e269539a426d01bc44d8656ca6bc39464c77a3d6;p=rust_exercises.git Typo. --- 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.