Merge pull request #1624 from rpitasky/patch-1

Minor docs typo
This commit is contained in:
Héctor Ramón 2023-01-02 19:42:19 +01:00 committed by GitHub
commit 7594e483ef
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<'_>);
}