We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c10b739 commit a142bc1Copy full SHA for a142bc1
content/tokio/tutorial/channels.md
@@ -93,7 +93,7 @@ Tokio provides a [number of channels][channels], each serving a different purpos
93
- [oneshot]: single-producer, single consumer channel. A single value can be sent.
94
- [broadcast]: multi-producer, multi-consumer. Many values can be sent. Each
95
receiver sees every value.
96
-- [watch]: single-producer, multi-consumer. Many values can be sent, but no
+- [watch]: multi-producer, multi-consumer. Many values can be sent, but no
97
history is kept. Receivers only see the most recent value.
98
99
If you need a multi-producer multi-consumer channel where only one consumer sees
0 commit comments