diff --git a/kotlinx-coroutines-core/common/src/Yield.kt b/kotlinx-coroutines-core/common/src/Yield.kt index 0d8bd3bc2f..39e089748c 100644 --- a/kotlinx-coroutines-core/common/src/Yield.kt +++ b/kotlinx-coroutines-core/common/src/Yield.kt @@ -9,7 +9,8 @@ import kotlin.coroutines.* import kotlin.coroutines.intrinsics.* /** - * Yields the thread (or thread pool) of the current coroutine dispatcher to other coroutines to run if possible. + * Yields the thread (or thread pool) of the current coroutine dispatcher + * to other coroutines on the same dispatcher to run if possible. * * This suspending function is cancellable. * If the [Job] of the current coroutine is cancelled or completed when this suspending function is invoked or while