From d448b7f437ab5f76ff173e5291cded39beb06f5a Mon Sep 17 00:00:00 2001 From: Edgar Luque Date: Mon, 10 Jul 2023 15:07:15 +0200 Subject: [PATCH] typo --- content/blog/rust-hashmap.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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, } ```