From 64b88849115a78d6d652b3b492084f76e7ef60e0 Mon Sep 17 00:00:00 2001 From: Alyssa Ross Date: Tue, 12 Jun 2018 00:26:55 +0200 Subject: [PATCH] Fix typo in comment (#402) --- tokio-reactor/src/atomic_task.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tokio-reactor/src/atomic_task.rs b/tokio-reactor/src/atomic_task.rs index 9b996988b..6f895ac01 100644 --- a/tokio-reactor/src/atomic_task.rs +++ b/tokio-reactor/src/atomic_task.rs @@ -84,7 +84,7 @@ pub(crate) struct AtomicTask { // `NOTIFYING` is made. On success, the caller obtains a lock on the task cell. // // If the lock is obtained, then the thread takes ownership of the current value -// in teh task cell, and calls `notify` on it. The state is then transitioned +// in the task cell, and calls `notify` on it. The state is then transitioned // back to `WAITING`. This transition must succeed as, at this point, the state // cannot be transitioned by another thread. //