diff --git a/src/lockfree/queue.rs b/src/lockfree/queue.rs index c6c5b084ea..a09405083d 100644 --- a/src/lockfree/queue.rs +++ b/src/lockfree/queue.rs @@ -58,7 +58,7 @@ impl Queue { Self::default() } - /// Adds `t` to the back of the queue, possibly waking up threads blocked on `pop()`. + /// Adds `t` to the back of the queue. pub fn push(&self, t: T, guard: &mut Guard) { let mut new = Owned::new(Node { data: MaybeUninit::new(t),