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
7575which delimits the lifetime of the coroutine. The above example shows that [ runBlocking] establishes the corresponding
7676scope and that is why the previous example waits until ` World! ` is printed after a second's delay and only then exits.
7777
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
7979lost and do not leak. An outer scope cannot complete until all its children coroutines complete.
8080Structured concurrency also ensures that any errors in the code are properly reported and are never lost.
8181
You can’t perform that action at this time.
0 commit comments