File tree Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -75,7 +75,7 @@ Coroutines follow a principle of
75
75
which delimits the lifetime of the coroutine. The above example shows that [ runBlocking] establishes the corresponding
76
76
scope and that is why the previous example waits until ` World! ` is printed after a second's delay and only then exits.
77
77
78
- In the real application, you will be launching a lot of coroutines. Structured concurrency ensures that they are not
78
+ In a real application, you will be launching a lot of coroutines. Structured concurrency ensures that they are not
79
79
lost and do not leak. An outer scope cannot complete until all its children coroutines complete.
80
80
Structured concurrency also ensures that any errors in the code are properly reported and are never lost.
81
81
You can’t perform that action at this time.
0 commit comments