diff --git a/content/blog/rust-hashmap.md b/content/blog/rust-hashmap.md index f5d47ae..c0b7957 100644 --- a/content/blog/rust-hashmap.md +++ b/content/blog/rust-hashmap.md @@ -27,7 +27,7 @@ pub struct MyHashmap { len: usize, // The hasher. state: S, - // Wehther to use quadratic or linear probing. + // Whether to use quadratic or linear probing. quadratic: bool, } ```