Skip to content

Commit 31eb00f

Browse files
committed
[GP-165] Rename 2-2-7-hash-table to 2-2-9-hash-table
2 parents 66431a4 + d3b836d commit 31eb00f

File tree

8 files changed

+5
-5
lines changed

8 files changed

+5
-5
lines changed

2-0-data-structures-and-algorithms/2-2-7-hash-table/pom.xml renamed to 2-0-data-structures-and-algorithms/2-2-9-hash-table/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

12-
<artifactId>2-2-7-hash-table</artifactId>
12+
<artifactId>2-2-9-hash-table</artifactId>
1313

1414

1515
</project>

2-0-data-structures-and-algorithms/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<module>2-2-4-linked-list</module>
1212
<module>2-2-5-array-list</module>
1313
<module>2-2-6-binary-search-tree</module>
14-
<module>2-2-7-hash-table</module>
14+
<module>2-2-9-hash-table</module>
1515
<module>data-structures-and-algorithms-util</module>
1616
</modules>
1717

5-0-functional-programming/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Java SE 8+ provides a rich API that enables functional programming features base
1717
* Stream API
1818
* Optional API
1919

20-
### At the end of this module you will be ablte to
20+
### At the end of this module you will be able to
2121
Write this
2222
```java
2323
public List<Account> findAllGmailAccounts(List<Account> accounts) {
@@ -40,7 +40,7 @@ public List<Account> findAllGmailAccounts(List<Account> accounts) {
4040
```
4141
Among other you will be able to
4242
* use **Funtional Interfaces** and **Lambdas** in order to **pass around functions** like first-class citizens ✅
43-
* **process data collections** in a **concise** and **easy to uderstnad** way using **Stream API**
43+
* **process data collections** in a **concise** and **easy way to understand** using **Stream API**
4444
* write **null-safe code** using **Optional API**
4545

4646
### Learn or skip ?

CONTRIBUTING.MD

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Imagine you need to add a new `methodX()` to the exercise. Here's the list of ac
3535
4. Push the changes
3636
5. Checkout `completed`
3737
6. Create a local branch from `completed` (let's call it `solution branch`)
38-
7. Merge your `exercise branch` into the `solution brnach`
38+
7. Merge your `exercise branch` into the `solution branch`
3939
8. Implement `methodX()` and make sure that tests pass
4040
9. Commit these changes to the `solution branch`
4141
10. Push the changes

0 commit comments

Comments
 (0)