Update lib.rs (#471)

Fix build failure on nightly (combination of warning for "cannot be resolved" and lint deny(warnings))
This commit is contained in:
Richard Dodd (dodj)
2018-07-11 12:30:51 -07:00
committed by Carl Lerche
parent 990186ec9d
commit b3ff9e315c
+1 -1
View File
@@ -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.
//!