You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We prefer to use the term "message" as what's transported in a channel,
as "value" is too generic and used in many other contexts.
This means changing the code too, so `Selected.value` is now
`Selected.message`.
Signed-off-by: Leandro Lucarella <[email protected]>
Copy file name to clipboardExpand all lines: RELEASE_NOTES.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -79,9 +79,9 @@
79
79
80
80
*`Peekable`
81
81
82
-
This class was removed because it was merely a shortcut to a receiver that caches the last value received. It did not fit the channel abstraction well and was infrequently used.
82
+
This class was removed because it was merely a shortcut to a receiver that caches the last message received. It did not fit the channel abstraction well and was infrequently used.
83
83
84
-
You can replace it with a task that receives and retains the last value.
84
+
You can replace it with a task that receives and retains the last message.
0 commit comments