This commit is contained in:
LukeMathWalker 2024-05-16 10:42:45 +02:00
parent 5d68add5ad
commit e269539a42
1 changed files with 1 additions and 1 deletions

View 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.