Skip to content

Commit c950c6e

Browse files
authored
Fix description of recv_blocking (#107)
1 parent 9a96317 commit c950c6e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -658,7 +658,7 @@ impl<T> Receiver<T> {
658658
/// # Blocking
659659
///
660660
/// Rather than using asynchronous waiting, like the [`recv`](Self::recv) method,
661-
/// this method will block the current thread until the message is sent.
661+
/// this method will block the current thread until the message is received.
662662
///
663663
/// This method should not be used in an asynchronous context. It is intended
664664
/// to be used such that a channel can be used in both asynchronous and synchronous contexts.

0 commit comments

Comments
 (0)