From c95b0b825f024c0f9c6ee93977fb5c3cfb74e2eb Mon Sep 17 00:00:00 2001 From: davhojt Date: Tue, 24 May 2022 17:40:58 +0300 Subject: [PATCH] docs(simple_hash): correct grammar --- subjects/simple_hash/README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/subjects/simple_hash/README.md b/subjects/simple_hash/README.md index 5877344d..a9b0ecd6 100644 --- a/subjects/simple_hash/README.md +++ b/subjects/simple_hash/README.md @@ -2,15 +2,11 @@ ### Instructions -Create a **function** `contain` that checks a `HashMap` to see if it contains a given key. +Create a **function** named `contain`, that checks a `HashMap` to see if it contains a given key. -Create a **function** `remove` that removes a given key from the `HashMap`. +Create a **function** named `remove` that removes a given key from the `HashMap`. -- Note: pay attention to the comment in the [usage](#usage) - -### Notions - -- [HashMap](https://doc.rust-lang.org/rust-by-example/std/hash.html) +> Pay attention to the comment in the [usage](#usage) ### Expected functions @@ -69,3 +65,7 @@ Does the HashMap contains the name Robert? => false Hash {"Katie": 334, "Daniel": 122, "Ashley": 333} $ ``` + +### Notions + +- [HashMap](https://doc.rust-lang.org/rust-by-example/std/hash.html)