Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/ch16-02-message-passing.md
Original file line number Diff line number Diff line change
Expand Up @@ -505,7 +505,7 @@ to create multiple threads that all send values to the same receiver. We can do
so by cloning the transmitting half of the channel, as shown in Listing 16-11:
-->

`mpsc`は、*mutiple producer, single consumer*の頭字語であると前述しました。
`mpsc`は、*multiple producer, single consumer*の頭字語であると前述しました。
`mpsc`を使い、リスト16-10のコードを拡張して、全ての値を同じ受信機に送信する複数のスレッドを生成しましょう。
チャンネルの転送の片割れをクローンすることでそうすることができます。リスト16-11のようにですね:

Expand Down