From 356265b568aa9006611f85d93714bea038a73555 Mon Sep 17 00:00:00 2001 From: SPICYJO <48597218+SPICYJO@users.noreply.github.com> Date: Sat, 23 Oct 2021 16:16:58 +0900 Subject: [PATCH] Update 07_Progress.md Fix typo in example code --- Introduction to Coroutines and Channels/07_Progress.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Introduction to Coroutines and Channels/07_Progress.md b/Introduction to Coroutines and Channels/07_Progress.md index 300a50d..8eed708 100644 --- a/Introduction to Coroutines and Channels/07_Progress.md +++ b/Introduction to Coroutines and Channels/07_Progress.md @@ -16,7 +16,7 @@ each intermediate state: suspend fun loadContributorsProgress( service: GitHubService, req: RequestData, - suspend updateResults: (List, completed: Boolean) -> Unit + updateResults: suspend (List, completed: Boolean) -> Unit ) { // loading the data // calling `updateResults` on intermediate states