From 44d2e289276117a90cdf82d1df7f1242e8c1d5f4 Mon Sep 17 00:00:00 2001 From: Edgar Luque Date: Mon, 10 Jul 2023 16:14:39 +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 57a81a9..5a7f08b 100644 --- a/content/blog/rust-hashmap.md +++ b/content/blog/rust-hashmap.md @@ -134,7 +134,7 @@ It works by taking successive values of an arbitrary [quadratic polynomial](http We will use `hash(key) + (i + i^2) / 2`. -Let `x` be the value of `hash(key) (mod capacity)`. +Let `x` be the value of `hash(key)`. Starting with `i = 0`: