We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5f60f22 commit 9c1b3afCopy full SHA for 9c1b3af
docs/topics/coroutines-basics.md
@@ -71,7 +71,7 @@ as threads are expensive resources and blocking them is inefficient and is often
71
### Structured concurrency
72
73
Coroutines follow a principle of
74
-**structured concurrency** which means that new coroutines can be only launched in a specific [CoroutineScope]
+**structured concurrency** which means that new coroutines can only be launched in a specific [CoroutineScope]
75
which delimits the lifetime of the coroutine. The above example shows that [runBlocking] establishes the corresponding
76
scope and that is why the previous example waits until `World!` is printed after a second's delay and only then exits.
77
0 commit comments