Skip to content

Commit 4d1c216

Browse files
authored
Fix a typo in coroutines basics doc (#2909)
1 parent 46c0026 commit 4d1c216

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/topics/coroutines-basics.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ Coroutines follow a principle of
7575
which delimits the lifetime of the coroutine. The above example shows that [runBlocking] establishes the corresponding
7676
scope 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
7979
lost and do not leak. An outer scope cannot complete until all its children coroutines complete.
8080
Structured concurrency also ensures that any errors in the code are properly reported and are never lost.
8181

0 commit comments

Comments
 (0)