From 5098da53fa111511571f0c1a544887bd66756e11 Mon Sep 17 00:00:00 2001 From: Paul Hauner Date: Mon, 27 Sep 2021 15:13:51 +1000 Subject: [PATCH] Fix minor type in task_executor --- common/task_executor/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/task_executor/src/lib.rs b/common/task_executor/src/lib.rs index abf8e7834c..480dc9b3c9 100644 --- a/common/task_executor/src/lib.rs +++ b/common/task_executor/src/lib.rs @@ -123,7 +123,7 @@ impl TaskExecutor { /// Spawn a future on the tokio runtime. /// - /// The future is wrapped in an `exit_future::Exit`. The task is canceled when the corresponding + /// The future is wrapped in an `exit_future::Exit`. The task is cancelled when the corresponding /// exit_future `Signal` is fired/dropped. /// /// The future is monitored via another spawned future to ensure that it doesn't panic. In case