summaryrefslogtreecommitdiffstats
path: root/tokio/src/time/driver/stack.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tokio/src/time/driver/stack.rs')
-rw-r--r--tokio/src/time/driver/stack.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tokio/src/time/driver/stack.rs b/tokio/src/time/driver/stack.rs
index 220a9634..3e2924f2 100644
--- a/tokio/src/time/driver/stack.rs
+++ b/tokio/src/time/driver/stack.rs
@@ -55,7 +55,7 @@ impl wheel::Stack for Stack {
self.head = Some(entry);
}
- /// Pop an item from the stack
+ /// Pops an item from the stack
fn pop(&mut self, _: &mut ()) -> Option<Arc<Entry>> {
let entry = self.head.take();