Skip to content

Commit 550cdf6

Browse files
authored
Minor Update to notes due to grammar issues (#3474)
1 parent f70d39e commit 550cdf6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

kotlinx-coroutines-core/jvm/src/scheduling/CoroutineScheduler.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ import kotlin.random.*
1515

1616
/**
1717
* Coroutine scheduler (pool of shared threads) which primary target is to distribute dispatched coroutines
18-
* over worker threads, including both CPU-intensive and blocking tasks, is the most efficient manner.
18+
* over worker threads, including both CPU-intensive and blocking tasks, in the most efficient manner.
1919
*
2020
* Current scheduler implementation has two optimization targets:
21-
* * Efficiency in the face of communication patterns (e.g., actors communicating via channel)
21+
* * Efficiency in the face of communication patterns (e.g. actors communicating via channel)
2222
* * Dynamic resizing to support blocking calls without re-dispatching coroutine to separate "blocking" thread pool.
2323
*
2424
* ### Structural overview

0 commit comments

Comments
 (0)