Minor docs typo

"Romve" -> "Remove"
This commit is contained in:
rpitasky 2022-12-29 14:19:04 -05:00 committed by GitHub
parent a6d0d5773f
commit 9bcb0574db
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -20,7 +20,7 @@ pub trait Storage {
state: &mut Self::State<'_>,
) -> Option<Self::Entry>;
/// Romve a [`Self::Entry`] from the [`Storage`].
/// Remove a [`Self::Entry`] from the [`Storage`].
fn remove(&mut self, entry: &Self::Entry, state: &mut Self::State<'_>);
}