We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d6b0b0f commit 60101b8Copy full SHA for 60101b8
kotlinx-coroutines-core/common/src/flow/Migration.kt
@@ -380,7 +380,7 @@ public fun <T> Flow<T>.concatWith(value: T): Flow<T> = noImpl()
380
@Deprecated(
381
level = DeprecationLevel.ERROR,
382
message = "Flow analogue of 'concatWith' is 'onCompletion'. Use 'onCompletion { emitAll(other) }'",
383
- replaceWith = ReplaceWith("onCompletion { emitAkk(other) }")
+ replaceWith = ReplaceWith("onCompletion { emitAll(other) }")
384
)
385
public fun <T> Flow<T>.concatWith(other: Flow<T>): Flow<T> = noImpl()
386
0 commit comments