Skip to content

Commit

Permalink
bobocode-projects#141 Fixed a couple of typos found in README and CON…
Browse files Browse the repository at this point in the history
…TRIBUTING files - completed branch.
  • Loading branch information
mepv committed Oct 15, 2022
1 parent ee914af commit a4318e4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions 5-0-functional-programming/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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<Account> findAllGmailAccounts(List<Account> accounts) {
Expand All @@ -40,7 +40,7 @@ public List<Account> findAllGmailAccounts(List<Account> 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 ?
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.MD
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit a4318e4

Please sign in to comment.