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
4 changes: 3 additions & 1 deletion crossbeam-channel/src/channel.rs
Original file line number Diff line number Diff line change
Expand Up @@ -904,7 +904,9 @@ impl<T> Receiver<T> {
///
/// If the channel is empty and not disconnected, this call will block until the receive
/// operation can proceed or the operation times out. If the channel is empty and becomes
/// disconnected, this call will wake up and return an error.
/// disconnected, this call will wake up and return an error. If the channel is non-empty
/// and the deadline has already been reached, the next message in the channel will be
/// returned.
///
/// If called on a zero-capacity channel, this method will wait for a send operation to appear
/// on the other side of the channel.
Expand Down
Loading