From 4466f63afe8bcecfe419df243357b93b0455e88f Mon Sep 17 00:00:00 2001 From: Evgeniy Zhelenskiy <55230817+zhelenskiy@users.noreply.github.com> Date: Fri, 31 May 2024 20:16:52 +0200 Subject: [PATCH] Fix typo in README.md (#87) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1689d5e2..faa0bbc3 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ class AwesomeServiceImpl(override val coroutineContext: CoroutineContext) : Awes override suspend fun getNews(city: String): Flow { return flow { emit("Today is 23 degrees!") - emit("Harry Potter in $city!") + emit("Harry Potter is in $city!") emit("New dogs cafe has opened doors to all fluffy customers!") } }