From 30780c879bd0d28b49f264fac2fe05da85aef3ad Mon Sep 17 00:00:00 2001 From: "HyunWoo Lee (Nunu Lee)" <54518925+l2hyunwoo@users.noreply.github.com> Date: Fri, 10 Nov 2023 00:47:27 +0900 Subject: [PATCH] Add explicit argument name in use lambda function in README.md (#8097) --- okhttp-coroutines/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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()) }