Skip to content

Commit

Permalink
Update watch channel docs (#762)
Browse files Browse the repository at this point in the history
  • Loading branch information
takassh authored Apr 22, 2024
1 parent c10b739 commit a142bc1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion content/tokio/tutorial/channels.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ Tokio provides a [number of channels][channels], each serving a different purpos
- [oneshot]: single-producer, single consumer channel. A single value can be sent.
- [broadcast]: multi-producer, multi-consumer. Many values can be sent. Each
receiver sees every value.
- [watch]: single-producer, multi-consumer. Many values can be sent, but no
- [watch]: multi-producer, multi-consumer. Many values can be sent, but no
history is kept. Receivers only see the most recent value.

If you need a multi-producer multi-consumer channel where only one consumer sees
Expand Down

0 comments on commit a142bc1

Please sign in to comment.