fix: typo in lib.rs (#229)

This commit is contained in:
Fointard 2022-10-09 13:57:57 +02:00 committed by GitHub
parent 4fd07038a1
commit 0b2a2269b2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -510,7 +510,7 @@ impl<'a, K: 'a + Eq + Hash, V: 'a, S: BuildHasher + Clone> DashMap<K, V, S> {
self._iter_mut()
}
/// Get a immutable reference to an entry in the map
/// Get an immutable reference to an entry in the map
///
/// **Locking behaviour:** May deadlock if called when holding a mutable reference into the map.
///