Skip to content

Commit

Permalink
Merge pull request #2 from demoray/fix-typo-ahashmap
Browse files Browse the repository at this point in the history
fix AHashMap typo
  • Loading branch information
randomairborne authored Jul 15, 2024
2 parents 81ea706 + 036a04c commit 88458bb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//! [`ExpiringMap`] is a wrapper around [`AHashMap`] that allows the specification
//! [`ExpiringMap`] is a wrapper around [`HashMap`] that allows the specification
//! of TTLs on entries. It does not support iteration.
//!
//! ```rust
Expand Down Expand Up @@ -72,7 +72,7 @@ impl<T> ExpiryValue<T> {
}
}

/// A wrapper around [`AHashMap`] which adds TTLs
/// A wrapper around [`HashMap`] which adds TTLs
#[derive(Debug)]
pub struct ExpiringMap<K, V> {
last_size: usize,
Expand Down

0 comments on commit 88458bb

Please sign in to comment.