From b3ff9e315cd7991785921da598ffa6daaedf2415 Mon Sep 17 00:00:00 2001 From: "Richard Dodd (dodj)" Date: Wed, 11 Jul 2018 20:30:51 +0100 Subject: [PATCH] Update lib.rs (#471) Fix build failure on nightly (combination of warning for "cannot be resolved" and lint deny(warnings)) --- tokio-executor/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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. //!