Skip to content

Commit 9c1b3af

Browse files
authored
Minor grammar change under Structured Concurrency (#3689)
1 parent 5f60f22 commit 9c1b3af

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
@@ -71,7 +71,7 @@ as threads are expensive resources and blocking them is inefficient and is often
7171
### Structured concurrency
7272

7373
Coroutines follow a principle of
74-
**structured concurrency** which means that new coroutines can be only launched in a specific [CoroutineScope]
74+
**structured concurrency** which means that new coroutines can only be launched in a specific [CoroutineScope]
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

0 commit comments

Comments
 (0)