We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 810f28f commit dbfb4aeCopy full SHA for dbfb4ae
kotlinx-coroutines-core/common/src/flow/terminal/Collect.kt
@@ -44,7 +44,7 @@ public suspend fun Flow<*>.collect(): Unit = collect(NopCollector)
44
* .launchIn(uiScope)
45
* ```
46
*
47
- * Note that resulting value of [launchIn] is not used the provided scope takes care of cancellation.
+ * Note that the resulting value of [launchIn] is not used and the provided scope takes care of cancellation.
48
*/
49
public fun <T> Flow<T>.launchIn(scope: CoroutineScope): Job = scope.launch {
50
collect() // tail-call
0 commit comments