diff --git a/src/concurrency/channels/bounded.md b/src/concurrency/channels/bounded.md index 83eec8687c6a..0cb9fe91d208 100644 --- a/src/concurrency/channels/bounded.md +++ b/src/concurrency/channels/bounded.md @@ -34,6 +34,6 @@ fn main() { - A call to `send` will abort with an error (that is why it returns `Result`) if the channel is closed. A channel is closed when the receiver is dropped. - A bounded channel with a size of zero is called a "rendezvous channel". Every - send will block the current thread until another thread calls `read`. + send will block the current thread until another thread calls `recv`.