Skip to content

Commit 96e6577

Browse files
LouisCADelizarov
authored andcommitted
Add missing operator modifier
1 parent 847e68e commit 96e6577

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

kotlinx-coroutines-core/common/src/Builders.common.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ public suspend fun <T> withContext(
170170
* This inline function calls [withContext].
171171
*/
172172
@ExperimentalCoroutinesApi
173-
public suspend inline fun <T> CoroutineDispatcher.invoke(
173+
public suspend inline operator fun <T> CoroutineDispatcher.invoke(
174174
noinline block: suspend CoroutineScope.() -> T
175175
): T = withContext(this, block)
176176

0 commit comments

Comments
 (0)