From f8d1821f137cad86561723e8a1a0bf8a3a81fda1 Mon Sep 17 00:00:00 2001 From: Johnny Lim Date: Fri, 12 Apr 2024 02:02:41 +0900 Subject: [PATCH] Fix typo in coroutine-context-and-dispatchers.md (#3941) --- docs/topics/coroutine-context-and-dispatchers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/topics/coroutine-context-and-dispatchers.md b/docs/topics/coroutine-context-and-dispatchers.md index 3a52ce1d2a..ffbb364289 100644 --- a/docs/topics/coroutine-context-and-dispatchers.md +++ b/docs/topics/coroutine-context-and-dispatchers.md @@ -502,7 +502,7 @@ class Activity { // to be continued ... ``` -Now, we can launch coroutines in the scope of this `Activity` using the defined `scope`. +Now, we can launch coroutines in the scope of this `Activity` using the defined `mainScope`. For the demo, we launch ten coroutines that delay for a different time: ```kotlin