diff --git a/Introduction to Coroutines and Channels/06_StructuredConcurrency.md b/Introduction to Coroutines and Channels/06_StructuredConcurrency.md index 9b637a5..0235583 100644 --- a/Introduction to Coroutines and Channels/06_StructuredConcurrency.md +++ b/Introduction to Coroutines and Channels/06_StructuredConcurrency.md @@ -1,7 +1,7 @@ # Structured concurrency _Coroutine scope_ is responsible for the structure and parent-child relationships between different coroutines. -We always start new coroutines inside a scope. +Coroutine builders, like `launch` and `async`, need to be started in some scope. _Coroutine context_ stores additional technical information used to run a given coroutine, like the dispatcher specifying the thread or threads the coroutine should be scheduled on.