diff --git a/src/doc/guide.md b/src/doc/guide.md index 7805b3d5681..0dc8859c328 100644 --- a/src/doc/guide.md +++ b/src/doc/guide.md @@ -5074,7 +5074,7 @@ The `channel()` function returns two endpoints: a `Receiver` and a `Sender`. You can use the `.send()` method on the `Sender` end, and receive the message on the `Receiver` side with the `recv()` method. This method blocks until it gets a message. There's a similar method, `.try_recv()`, -which returns an `Option` and does not block. +which returns an `Result` and does not block. If you want to send messages to the task as well, create two channels!