summaryrefslogtreecommitdiffstats
path: root/tokio/src/task/core.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tokio/src/task/core.rs')
-rw-r--r--tokio/src/task/core.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tokio/src/task/core.rs b/tokio/src/task/core.rs
index 67b9bed6..b7c15a98 100644
--- a/tokio/src/task/core.rs
+++ b/tokio/src/task/core.rs
@@ -75,7 +75,7 @@ enum Stage<T: Future> {
}
impl<T: Future> Cell<T> {
- /// Allocate a new task cell, containing the header, trailer, and core
+ /// Allocates a new task cell, containing the header, trailer, and core
/// structures.
pub(super) fn new<S>(future: T, state: State) -> Box<Cell<T>>
where