diff --git a/2-0-data-structures-and-algorithms/2-2-7-hash-table/README.md b/2-0-data-structures-and-algorithms/2-2-9-hash-table/README.md
similarity index 100%
rename from 2-0-data-structures-and-algorithms/2-2-7-hash-table/README.md
rename to 2-0-data-structures-and-algorithms/2-2-9-hash-table/README.md
diff --git a/2-0-data-structures-and-algorithms/2-2-7-hash-table/pom.xml b/2-0-data-structures-and-algorithms/2-2-9-hash-table/pom.xml
similarity index 91%
rename from 2-0-data-structures-and-algorithms/2-2-7-hash-table/pom.xml
rename to 2-0-data-structures-and-algorithms/2-2-9-hash-table/pom.xml
index b9064ad48..0453cee6a 100644
--- a/2-0-data-structures-and-algorithms/2-2-7-hash-table/pom.xml
+++ b/2-0-data-structures-and-algorithms/2-2-9-hash-table/pom.xml
@@ -9,7 +9,7 @@
4.0.0
- 2-2-7-hash-table
+ 2-2-9-hash-table
\ No newline at end of file
diff --git a/2-0-data-structures-and-algorithms/2-2-7-hash-table/src/main/java/com/bobocode/cs/HashTable.java b/2-0-data-structures-and-algorithms/2-2-9-hash-table/src/main/java/com/bobocode/cs/HashTable.java
similarity index 100%
rename from 2-0-data-structures-and-algorithms/2-2-7-hash-table/src/main/java/com/bobocode/cs/HashTable.java
rename to 2-0-data-structures-and-algorithms/2-2-9-hash-table/src/main/java/com/bobocode/cs/HashTable.java
diff --git a/2-0-data-structures-and-algorithms/2-2-7-hash-table/src/main/java/com/bobocode/cs/Map.java b/2-0-data-structures-and-algorithms/2-2-9-hash-table/src/main/java/com/bobocode/cs/Map.java
similarity index 100%
rename from 2-0-data-structures-and-algorithms/2-2-7-hash-table/src/main/java/com/bobocode/cs/Map.java
rename to 2-0-data-structures-and-algorithms/2-2-9-hash-table/src/main/java/com/bobocode/cs/Map.java
diff --git a/2-0-data-structures-and-algorithms/2-2-7-hash-table/src/test/java/com/bobocode/cs/HashTableTest.java b/2-0-data-structures-and-algorithms/2-2-9-hash-table/src/test/java/com/bobocode/cs/HashTableTest.java
similarity index 100%
rename from 2-0-data-structures-and-algorithms/2-2-7-hash-table/src/test/java/com/bobocode/cs/HashTableTest.java
rename to 2-0-data-structures-and-algorithms/2-2-9-hash-table/src/test/java/com/bobocode/cs/HashTableTest.java
diff --git a/2-0-data-structures-and-algorithms/pom.xml b/2-0-data-structures-and-algorithms/pom.xml
index 7d9923712..a08d31d22 100644
--- a/2-0-data-structures-and-algorithms/pom.xml
+++ b/2-0-data-structures-and-algorithms/pom.xml
@@ -11,7 +11,7 @@
2-2-4-linked-list
2-2-5-array-list
2-2-6-binary-search-tree
- 2-2-7-hash-table
+ 2-2-9-hash-table
data-structures-and-algorithms-util
diff --git a/5-0-functional-programming/README.md b/5-0-functional-programming/README.md
index 538cd2224..8462a7bca 100644
--- a/5-0-functional-programming/README.md
+++ b/5-0-functional-programming/README.md
@@ -17,7 +17,7 @@ Java SE 8+ provides a rich API that enables functional programming features base
* Stream API
* Optional API
-### At the end of this module you will be ablte to
+### At the end of this module you will be able to
Write this
```java
public List findAllGmailAccounts(List accounts) {
@@ -40,7 +40,7 @@ public List findAllGmailAccounts(List accounts) {
```
Among other you will be able to
* use **Funtional Interfaces** and **Lambdas** in order to **pass around functions** like first-class citizens ✅
-* **process data collections** in a **concise** and **easy to uderstnad** way using **Stream API** ✅
+* **process data collections** in a **concise** and **easy way to understand** using **Stream API** ✅
* write **null-safe code** using **Optional API** ✅
### Learn or skip ?
diff --git a/CONTRIBUTING.MD b/CONTRIBUTING.MD
index 9f4def44b..9ae61d41f 100644
--- a/CONTRIBUTING.MD
+++ b/CONTRIBUTING.MD
@@ -35,7 +35,7 @@ Imagine you need to add a new `methodX()` to the exercise. Here's the list of ac
4. Push the changes
5. Checkout `completed`
6. Create a local branch from `completed` (let's call it `solution branch`)
-7. Merge your `exercise branch` into the `solution brnach`
+7. Merge your `exercise branch` into the `solution branch`
8. Implement `methodX()` and make sure that tests pass
9. Commit these changes to the `solution branch`
10. Push the changes