diff --git a/coil-compose-core/src/commonMain/kotlin/coil3/compose/internal/DelayedDispatchCoroutineDispatcher.kt b/coil-compose-core/src/commonMain/kotlin/coil3/compose/internal/DelayedDispatchCoroutineDispatcher.kt index df43e772f..ea2fd1c47 100644 --- a/coil-compose-core/src/commonMain/kotlin/coil3/compose/internal/DelayedDispatchCoroutineDispatcher.kt +++ b/coil-compose-core/src/commonMain/kotlin/coil3/compose/internal/DelayedDispatchCoroutineDispatcher.kt @@ -28,7 +28,8 @@ internal fun rememberDelayedDispatchCoroutineScope(): CoroutineScope { } /** - * A [CoroutineDispatcher] that delays dispatching until the current [CoroutineDispatcher] changes. + * A [CoroutineDispatcher] that delays dispatching to [delegate] until after the current + * [CoroutineDispatcher] changes. */ private class DelayedDispatchCoroutineDispatcher( private val delegate: CoroutineDispatcher,