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 aadaac3 commit 81ab2e7Copy full SHA for 81ab2e7
kotlinx-coroutines-core/common/src/flow/terminal/Collect.kt
@@ -40,7 +40,7 @@ public suspend fun Flow<*>.collect(): Unit = collect(NopCollector)
40
* .launchIn(uiScope)
41
* ```
42
*
43
- * Note that the resulting value of [launchIn] is not used and the provided scope takes care of cancellation.
+ * In this example, note that the `job` returned by [launchIn] is not used, and the provided scope takes care of cancellation.
44
*/
45
public fun <T> Flow<T>.launchIn(scope: CoroutineScope): Job = scope.launch {
46
collect() // tail-call
0 commit comments