Skip to content

Commit d6820f5

Browse files
Fix some typos in README.md
1 parent a196666 commit d6820f5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ In the `playground` package you can play around with Coroutines examples that ru
1313

1414
## 🔧 Project Setup
1515

16-
Every use case is using its own `Activity` and `JetPack ViewModel`. The `ViewModel`s contains all the interesting Coroutine related code.
16+
Every use case is using its own `Activity` and `JetPack ViewModel`. The `ViewModel`s contain all the interesting Coroutine related code.
1717
`Activities` listen to `LiveData` events of the `ViewModel` and render received `UiState`s.
1818

1919
This project is using retrofit/okhttp together with a `MockNetworkInterceptor`. This lets you define how the API should behave.
@@ -34,7 +34,7 @@ Sign up to my [newsletter](https://www.lukaslechner.com/newsletter/) to never mi
3434

3535
## 🎓 Online Course
3636

37-
This project is the foundation of a comprehensive Online Course about "Mastering Kotlin Coroutines for Android Development", which I am currently working on.
37+
This project is the foundation of a comprehensive Online Course about "Mastering Kotlin Coroutines for Android Development",on which I am currently working on.
3838

3939
Sign up to my [newsletter](https://www.lukaslechner.com/newsletter/) to get more information once it is released!
4040

@@ -71,7 +71,7 @@ This use case performs two network requests sequentially. First it retrieves rec
7171

7272
There are also 2 alternative implementations included. One is using old-school [callbacks](app/src/main/java/com/lukaslechner/coroutineusecasesonandroid/usecases/coroutines/usecase2/callbacks/SequentialNetworkRequestsCallbacksViewModel.kt).
7373
The other one uses [RxJava](app/src/main/java/com/lukaslechner/coroutineusecasesonandroid/usecases/coroutines/usecase2/rx/SequentialNetworkRequestsRxViewModel.kt). You can compare each implementation.
74-
If you compare all implementation, it is really interesting to see, in my opinion, how simple the Coroutine-based version actually is.
74+
If you compare all three implementations, it is really interesting to see, in my opinion, how simple the Coroutine-based version actually is.
7575

7676
[[code](app/src/main/java/com/lukaslechner/coroutineusecasesonandroid/usecases/coroutines/usecase2/Perform2SequentialNetworkRequestsViewModel.kt)]
7777

0 commit comments

Comments
 (0)