chore: fix spelling mistakes (#4858)

Signed-off-by: Josh Soref <[email protected]>
This commit is contained in:
Josh Soref
2022-07-25 07:26:01 +00:00
committed by GitHub
parent 94a7eaed51
commit f3e340a35b
26 changed files with 42 additions and 42 deletions
+1 -1
View File
@@ -190,7 +190,7 @@ impl<T> SlabStorage<T> {
let key_contained = self.key_map.contains_key(&key.into());
if key_contained {
// It's possible that a `compact` call creates capacitiy in `self.inner` in
// It's possible that a `compact` call creates capacity in `self.inner` in
// such a way that a `self.inner.insert` call creates a `key` which was
// previously given out during an `insert` call prior to the `compact` call.
// If `key` is contained in `self.key_map`, we have encountered this exact situation,