From e72b60302126e24d8b290492c400215f1a6987dc Mon Sep 17 00:00:00 2001 From: Edgar Luque Date: Mon, 10 Jul 2023 16:08:27 +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 c0b7957..57a81a9 100644 --- a/content/blog/rust-hashmap.md +++ b/content/blog/rust-hashmap.md @@ -80,7 +80,7 @@ According to some [papers](https://dl.acm.org/doi/10.1145/356643.356645) when th ## Probing / Searching -When searching for a slot, either at insertion or search, we will need to do something when a hash colision happens: +When searching for a slot, either at insertion or search, we will need to do something when a hash collision happens: ### Linear probing