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.*
15
15
16
16
/* *
17
17
* 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.
19
19
*
20
20
* 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)
22
22
* * Dynamic resizing to support blocking calls without re-dispatching coroutine to separate "blocking" thread pool.
23
23
*
24
24
* ### Structural overview
You can’t perform that action at this time.
0 commit comments