We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 709a506 commit dba7de1Copy full SHA for dba7de1
kotlinx-coroutines-core/common/src/CoroutineDispatcher.kt
@@ -84,7 +84,7 @@ public abstract class CoroutineDispatcher :
84
* // At most 2 threads will be processing images as it is really slow and CPU-intensive
85
* private val imageProcessingDispatcher = backgroundDispatcher.limitedParallelism(2)
86
* // At most 3 threads will be processing JSON to avoid image processing starvation
87
- * private val imageProcessingDispatcher = backgroundDispatcher.limitedParallelism(3)
+ * private val jsonProcessingDispatcher = backgroundDispatcher.limitedParallelism(3)
88
* // At most 1 thread will be doing IO
89
* private val fileWriterDispatcher = backgroundDispatcher.limitedParallelism(1)
90
* ```
0 commit comments