From b4345880a48d84875f6b58d4b4b45f2d850d8259 Mon Sep 17 00:00:00 2001
From: Lihay Morad <44345425+LihayMorad@users.noreply.github.com>
Date: Sun, 23 Jan 2022 00:53:49 +0200
Subject: [PATCH 1/2] fix a typo in README.md

---
 README.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/README.md b/README.md
index bdfb40b..6cb5137 100644
--- a/README.md
+++ b/README.md
@@ -160,7 +160,7 @@ console.log("this doSomething took " + (endTime - startTime) + " milliseconds.")
 ```
 
 **[⬆ Back to Top](#table-of-contents)**
-### Two ways to remove an item in a specific in an array
+### Two ways to remove an item in a specific index in an array
 
 ```javascript
 //Mutating way

From 844d8f6974b37325c698f8fe4b887e82fa8e4aaa Mon Sep 17 00:00:00 2001
From: Lihay Morad <44345425+LihayMorad@users.noreply.github.com>
Date: Sun, 23 Jan 2022 00:57:14 +0200
Subject: [PATCH 2/2] Update README.md

---
 README.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/README.md b/README.md
index 6cb5137..c0b35ea 100644
--- a/README.md
+++ b/README.md
@@ -9,7 +9,7 @@
 |3  | [Convert truthy/falsy to boolean(true/false)](#Convert-truthy-falsy-to-boolean)|
 |4  | [Repeat a string](#Repeat-a-string)|
 |5  | [Check how long an operation takes](#Check-how-long-an-operation-takes)|
-|6  | [Two ways to remove an item in a specific in an array](#Two-ways-to-remove-an-item-in-a-specific-in-an-array)|
+|6  | [Two ways to remove an item in a specific index in an array](#Two-ways-to-remove-an-item-in-a-specific-index-in-an-array)|
 |7  | [Did you know you can flat an array?](#Did-you-know-you-can-flat-an-array)|
 |8  | [Get unique values in an array](#Get-unique-values-in-an-array)|
 |9  | [Copy Text to Clipboard](#Copy-Text-to-Clipboard)|