Skip to content

Commit 60101b8

Browse files
committed
Fixed typo in Migration.concatWith replaceWith code
1 parent d6b0b0f commit 60101b8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

kotlinx-coroutines-core/common/src/flow/Migration.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -380,7 +380,7 @@ public fun <T> Flow<T>.concatWith(value: T): Flow<T> = noImpl()
380380
@Deprecated(
381381
level = DeprecationLevel.ERROR,
382382
message = "Flow analogue of 'concatWith' is 'onCompletion'. Use 'onCompletion { emitAll(other) }'",
383-
replaceWith = ReplaceWith("onCompletion { emitAkk(other) }")
383+
replaceWith = ReplaceWith("onCompletion { emitAll(other) }")
384384
)
385385
public fun <T> Flow<T>.concatWith(other: Flow<T>): Flow<T> = noImpl()
386386

0 commit comments

Comments
 (0)