From e7d0715c3c3c15d87af416b51365782dae13256b Mon Sep 17 00:00:00 2001 From: Edgar Luque Date: Mon, 10 Jul 2023 15:02:15 +0200 Subject: [PATCH] cap --- 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 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