summaryrefslogtreecommitdiffstats
path: root/tokio-test
diff options
context:
space:
mode:
authorMatt Kennedy <42277188+kennedymj97@users.noreply.github.com>2020-09-29 12:23:11 +0100
committerGitHub <noreply@github.com>2020-09-29 13:23:11 +0200
commitdcb11118d2c7260e75c059a89b40eab3e35de53d (patch)
tree63d7bb2360350f09310de84995e63334aaba1d39 /tokio-test
parent3403be5e2ea81eb971f38c180dac729b21c30fa8 (diff)
test: fix spelling error in documentation (#2895)
Fixes: #2754
Diffstat (limited to 'tokio-test')
-rw-r--r--tokio-test/src/task.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tokio-test/src/task.rs b/tokio-test/src/task.rs
index 728117cc..6a73fd75 100644
--- a/tokio-test/src/task.rs
+++ b/tokio-test/src/task.rs
@@ -11,7 +11,7 @@ use std::task::{Context, Poll, RawWaker, RawWakerVTable, Waker};
use tokio::stream::Stream;
-/// TOOD: dox
+/// TODO: dox
pub fn spawn<T>(task: T) -> Spawn<T> {
Spawn {
task: MockTask::new(),