Typo.
authorLukeMathWalker <20745048+LukeMathWalker@users.noreply.github.com>
Thu, 16 May 2024 08:42:45 +0000 (10:42 +0200)
committerLukeMathWalker <20745048+LukeMathWalker@users.noreply.github.com>
Thu, 16 May 2024 08:42:45 +0000 (10:42 +0200)
book/src/07_threads/05_channels.md

index 91f4cab..c900fab 100644 (file)
@@ -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.