diff --git a/content/blog/rust-hashmap.md b/content/blog/rust-hashmap.md index d1c437d..f5d47ae 100644 --- a/content/blog/rust-hashmap.md +++ b/content/blog/rust-hashmap.md @@ -66,7 +66,7 @@ impl MyHashmap { ``` You may wonder why there are no trait bounds in this impl block, like `K: Hash`, and this is because it's usually better to only put the trait -bounds in impl blocks where you use them. The standard library does this extensively (from what i have seen). +bounds in impl blocks where you use them. The standard library does this extensively (from what I have seen). ## Load factor