From 39f049eda2a68eff0b5382cc61b0e406ad1a5ed8 Mon Sep 17 00:00:00 2001 From: Shay Panuilov Date: Fri, 13 Jan 2023 21:01:39 +0200 Subject: [PATCH] Update README.md Fixed some syntax errors. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 20fa3b0..e9b5e3b 100644 --- a/README.md +++ b/README.md @@ -22,11 +22,11 @@ You can also check [**MVP**](https://github.com/ahmedeltaher/Android-MVP-Archite - Don’t put logic in the ViewModel that is critical to saving clean state or related to data. Any call you make from a ViewModel can be the last one. -**What is Coroutines ?** +**What are Coroutines ?** ------------------- **Coroutines :** -Is light wight threads for asynchronous programming, Coroutines not only open the doors to +Coroutine is a light weight thread for asynchronous programming, Coroutines not only open the doors to asynchronous programming, but also provide a wealth of other possibilities such as concurrency, actors, etc. ----------