Skip to content

Commit a223f35

Browse files
saied89qwwdfsad
authored andcommitted
fix minor typo
1 parent ea89e60 commit a223f35

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/basics.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ Instead of launching coroutines in the [GlobalScope], just like we usually do wi
220220
we can launch coroutines in the specific scope of the operation we are performing.
221221

222222
In our example, we have `main` function that is turned into a coroutine using [runBlocking] coroutine builder.
223-
Every coroutine builder, including `runBlocking`, adds an instance of [CoroutineScope] to the scope its code block.
223+
Every coroutine builder, including `runBlocking`, adds an instance of [CoroutineScope] to the scope of its code block.
224224
We can launch coroutines in this scope without having to `join` them explicitly, because
225225
an outer coroutine (`runBlocking` in our example) does not complete until all the coroutines launched
226226
in its scope complete. Thus, we can make our example simpler:

0 commit comments

Comments
 (0)