File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
kotlinx-coroutines-core/jvm/src/scheduling Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments