diff --git a/okhttp-coroutines/README.md b/okhttp-coroutines/README.md index 890eb5036..38e96111a 100644 --- a/okhttp-coroutines/README.md +++ b/okhttp-coroutines/README.md @@ -6,7 +6,7 @@ Support for Kotlin clients using coroutines. ```kotlin val call = client.newCall(request) -call.executeAsync().use { +call.executeAsync().use { response -> withContext(Dispatchers.IO) { println(response.body?.string()) }