minor: fix typo

This commit is contained in:
Young-Flash 2024-02-19 18:12:08 +08:00
parent af174b9428
commit f3d84e86c8
5 changed files with 8 additions and 8 deletions

View file

@ -40,7 +40,7 @@ pub(crate) trait LruNode: Sized + Debug {
#[derive(Debug)]
pub(crate) struct LruIndex {
/// Index in the approprate LRU list, or std::usize::MAX if not a
/// Index in the appropriate LRU list, or std::usize::MAX if not a
/// member.
index: AtomicUsize,
}