We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f86af23 commit 1200d47Copy full SHA for 1200d47
kotlinx-coroutines-core/common/src/flow/Channels.kt
@@ -71,7 +71,7 @@ public suspend fun <T> FlowCollector<T>.emitAll(channel: ReceiveChannel<T>) {
71
* ### Cancellation semantics
72
*
73
* 1) Flow consumer is cancelled when the original channel is cancelled.
74
- * 2) Flow consumer completes normally when the original channel completes (~is closed) normally.
+ * 2) Flow consumer completes normally when the original channel was closed normally and then fully consumed.
75
* 3) If the flow consumer fails with an exception, channel is cancelled.
76
77
* ### Operator fusion
0 commit comments