This commit is contained in:
Edgar 2023-07-10 15:07:15 +02:00
parent e7d0715c3c
commit d448b7f437
No known key found for this signature in database
GPG key ID: 70ADAE8F35904387

View file

@ -27,7 +27,7 @@ pub struct MyHashmap<K, V, S = RandomState> {
len: usize,
// The hasher.
state: S,
// Wehther to use quadratic or linear probing.
// Whether to use quadratic or linear probing.
quadratic: bool,
}
```