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!") } }