From 1e8af733e189505ae7492764214de81209e8d2ea Mon Sep 17 00:00:00 2001 From: Augusto Date: Thu, 11 Feb 2021 00:17:41 +0000 Subject: [PATCH] Fix formatting --- subjects/simple_hash/README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/subjects/simple_hash/README.md b/subjects/simple_hash/README.md index c8e5e246..a6d5d416 100644 --- a/subjects/simple_hash/README.md +++ b/subjects/simple_hash/README.md @@ -37,21 +37,21 @@ fn main() { println!( "Does the HashMap contains the name Roman? => {}", contain(hash.clone(), "Roman") - //----------^^^^^^^^ - // this is not correct, fix it to match the solution the expected function + //----------^^^^^^^^ + // this is not correct, fix it to match the solution the expected function ); println!( "Does the HashMap contains the name Katie? => {}", contain(hash.clone(), "Katie") - //----------^^^^^^^^ - // this is not correct, fix it to match the solution the expected function + //----------^^^^^^^^ + // this is not correct, fix it to match the solution the expected function ); println!("Removing Robert {:?}", remove(hash.clone(), "Robert")); println!( "Does the HashMap contains the name Robert? => {}", contain(hash.clone(), "Robert") - //----------^^^^^^^^ - // this is not correct, fix it to match the solution the expected function + //----------^^^^^^^^ + // this is not correct, fix it to match the solution the expected function ); println!("Hash {:?}", &hash); }