mirror of
https://github.com/mainmatter/100-exercises-to-learn-rust
synced 2025-02-05 08:45:55 +01:00
Typo.
This commit is contained in:
parent
5d68add5ad
commit
e269539a42
1 changed files with 1 additions and 1 deletions
|
@ -30,7 +30,7 @@ We can solve the issue using **channels**.
|
||||||
|
|
||||||
## 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.
|
in its `std::sync::mpsc` module.
|
||||||
There are two channel flavours: bounded and unbounded. We'll stick to the unbounded
|
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.
|
version for now, but we'll discuss the pros and cons later on.
|
||||||
|
|
Loading…
Add table
Reference in a new issue