From 829ca9ab05d2ae04927f5635ff890d0b871b1e60 Mon Sep 17 00:00:00 2001
From: wangxu <wangxu1@oneniceapp.com>
Date: Wed, 17 Feb 2021 10:41:10 +0800
Subject: [PATCH 1/2] fix spelling mistake

---
 exercises/collections/hashmap2.rs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/exercises/collections/hashmap2.rs b/exercises/collections/hashmap2.rs
index 7e25be7..d1c0089 100644
--- a/exercises/collections/hashmap2.rs
+++ b/exercises/collections/hashmap2.rs
@@ -21,7 +21,7 @@ enum Fruit {
     Apple,
     Banana,
     Mango,
-    Lichi,
+    Litchi,
     Pineapple,
 }
 

From 7a1a3d434f0b6634cffdf2e60e50f12a43150aeb Mon Sep 17 00:00:00 2001
From: wangxu <wangxu1@oneniceapp.com>
Date: Wed, 17 Feb 2021 11:32:52 +0800
Subject: [PATCH 2/2] fix spelling mistake

---
 exercises/collections/hashmap2.rs | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/exercises/collections/hashmap2.rs b/exercises/collections/hashmap2.rs
index d1c0089..9997d5a 100644
--- a/exercises/collections/hashmap2.rs
+++ b/exercises/collections/hashmap2.rs
@@ -30,7 +30,7 @@ fn fruit_basket(basket: &mut HashMap<Fruit, u32>) {
         Fruit::Apple,
         Fruit::Banana,
         Fruit::Mango,
-        Fruit::Lichi,
+        Fruit::Litchi,
         Fruit::Pineapple,
     ];
 
@@ -49,7 +49,7 @@ mod tests {
         let mut basket = HashMap::<Fruit, u32>::new();
         basket.insert(Fruit::Apple, 4);
         basket.insert(Fruit::Mango, 2);
-        basket.insert(Fruit::Lichi, 5);
+        basket.insert(Fruit::Litchi, 5);
 
         basket
     }
@@ -60,7 +60,7 @@ mod tests {
         fruit_basket(&mut basket);
         assert_eq!(*basket.get(&Fruit::Apple).unwrap(), 4);
         assert_eq!(*basket.get(&Fruit::Mango).unwrap(), 2);
-        assert_eq!(*basket.get(&Fruit::Lichi).unwrap(), 5);
+        assert_eq!(*basket.get(&Fruit::Litchi).unwrap(), 5);
     }
 
     #[test]