Skip to content

Commit a142bc1

Browse files
authored
Update watch channel docs (#762)
1 parent c10b739 commit a142bc1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

content/tokio/tutorial/channels.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ Tokio provides a [number of channels][channels], each serving a different purpos
9393
- [oneshot]: single-producer, single consumer channel. A single value can be sent.
9494
- [broadcast]: multi-producer, multi-consumer. Many values can be sent. Each
9595
receiver sees every value.
96-
- [watch]: single-producer, multi-consumer. Many values can be sent, but no
96+
- [watch]: multi-producer, multi-consumer. Many values can be sent, but no
9797
history is kept. Receivers only see the most recent value.
9898

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

0 commit comments

Comments
 (0)