From 98aa7d4d5bfaaad16c5423bfa61ba33b03a2dd6a Mon Sep 17 00:00:00 2001 From: Johnny Lim Date: Thu, 16 Nov 2023 19:18:59 +0900 Subject: [PATCH] Fix typo in coroutine-context-and-dispatchers.md --- 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 969bd21eb9..bda3e17813 100644 --- a/docs/topics/coroutine-context-and-dispatchers.md +++ b/docs/topics/coroutine-context-and-dispatchers.md @@ -504,7 +504,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