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