mirror of
https://github.com/rust-lang/book.git
synced 2026-09-15 10:10:42 -04:00
Merge pull request #596 from eugene-bulkin/typo-16.02
Fix typo in chapter 16.02
This commit is contained in:
@@ -35,7 +35,7 @@ fn main() {
|
||||
<span class="caption">Listing 16-6: Creating a channel and assigning the two
|
||||
halves to `tx` and `rx`</span>
|
||||
|
||||
The `mpsc::channel` function crates a new channel. `mpsc` stands for *multiple
|
||||
The `mpsc::channel` function creates a new channel. `mpsc` stands for *multiple
|
||||
producer, single consumer*. In short, we can have multiple *sending* ends of a
|
||||
channel that produce values, but only one *receiving* end that consumes those
|
||||
values. We're going to start with a single producer for now, but we'll add
|
||||
|
||||
Reference in New Issue
Block a user