Cleanup
diff --git a/Cargo.toml b/Cargo.toml
index fa59647..2db902e 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -18,6 +18,5 @@
 
 [dev-dependencies]
 crossbeam = "0.7.3"
-crossbeam-utils = "0.7.2"
 futures = "0.3.4"
 lazy_static = "1.4.0"
diff --git a/src/state.rs b/src/state.rs
index 58559ac..099e6bc 100644
--- a/src/state.rs
+++ b/src/state.rs
@@ -45,7 +45,7 @@
 ///
 /// This flag is set while there is a registered awaiter of type `Waker` inside the task. When the
 /// task gets closed or completed, we need to wake the awaiter. This flag can be used as a fast
-/// check that tells us if we need to wake anyone without acquiring the lock inside the task.
+/// check that tells us if we need to wake anyone.
 pub(crate) const AWAITER: usize = 1 << 5;
 
 /// Set if an awaiter is being registered.