From 14226dbddc9d5dbea40d3d5e8108da0be3bc351f Mon Sep 17 00:00:00 2001 From: Helen Date: Wed, 12 Feb 2025 12:57:08 +0300 Subject: [PATCH] hashset_delay.rs --- common/hashset_delay/src/hashset_delay.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/hashset_delay/src/hashset_delay.rs b/common/hashset_delay/src/hashset_delay.rs index 052d71f..104fc9a 100644 --- a/common/hashset_delay/src/hashset_delay.rs +++ b/common/hashset_delay/src/hashset_delay.rs @@ -61,7 +61,7 @@ where self.insert_at(key, self.default_entry_timeout); } - /// Inserts an entry that will expire at a given instant. If the entry already exists, the + /// Inserts an entry that will expire at a given duration. If the entry already exists, the /// timeout is updated. pub fn insert_at(&mut self, key: K, entry_duration: Duration) { if self.contains(&key) {