From 52780eb2429814505b7b6a6f33f50e0e62dae48e Mon Sep 17 00:00:00 2001 From: Sebastian Aigner Date: Mon, 9 Jan 2023 16:42:33 +0100 Subject: [PATCH] Remove confusing comma --- docs/topics/coroutines-and-channels.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/topics/coroutines-and-channels.md b/docs/topics/coroutines-and-channels.md index b9ca2e8597..ffc41e2c05 100644 --- a/docs/topics/coroutines-and-channels.md +++ b/docs/topics/coroutines-and-channels.md @@ -215,7 +215,7 @@ is to use _callbacks_. Instead of calling the code that should be invoked right after the operation is completed, you can extract it into a separate callback, often a lambda, and pass that lambda to the caller in order for it to be called later. -To make the UI responsive, you can either move the whole computation to a separate thread or switch to the Retrofit API, +To make the UI responsive, you can either move the whole computation to a separate thread or switch to the Retrofit API which uses callbacks instead of blocking calls. ### Use a background thread