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`: