diff --git a/tokio-executor/src/lib.rs b/tokio-executor/src/lib.rs index d08b5b618..051d88855 100644 --- a/tokio-executor/src/lib.rs +++ b/tokio-executor/src/lib.rs @@ -6,7 +6,7 @@ //! an executor is called a "task". //! //! The executor is responsible for ensuring that [`Future::poll`] is called -//! whenever the task is [notified]. Notification happens when the internal +//! whenever the task is notified. Notification happens when the internal //! state of a task transitions from "not ready" to ready. For example, a socket //! might have received data and a call to `read` will now be able to succeed. //!