From 3f06d767b5a11789703e7e00e7922bdcd77ce08a Mon Sep 17 00:00:00 2001 From: Mikkel ALMONTE--RINGAUD Date: Tue, 16 Jul 2024 17:20:26 +0200 Subject: [PATCH] fix: Lyche becomes Lychee Small typo. --- exercises/11_hashmaps/hashmaps2.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/11_hashmaps/hashmaps2.rs b/exercises/11_hashmaps/hashmaps2.rs index 376970d7..e9f53fea 100644 --- a/exercises/11_hashmaps/hashmaps2.rs +++ b/exercises/11_hashmaps/hashmaps2.rs @@ -6,7 +6,7 @@ // must add fruit to the basket so that there is at least one of each kind and // more than 11 in total - we have a lot of mouths to feed. You are not allowed // to insert any more of the fruits that are already in the basket (Apple, -// Mango, and Lyche). +// Mango, and Lychee). use std::collections::HashMap;