Skip to content

Commit dbfb4ae

Browse files
Fix the API doc of launchIn operator (Kotlin#2893)
1 parent 810f28f commit dbfb4ae

File tree

1 file changed

+1
-1
lines changed
  • kotlinx-coroutines-core/common/src/flow/terminal

1 file changed

+1
-1
lines changed

kotlinx-coroutines-core/common/src/flow/terminal/Collect.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public suspend fun Flow<*>.collect(): Unit = collect(NopCollector)
4444
* .launchIn(uiScope)
4545
* ```
4646
*
47-
* Note that resulting value of [launchIn] is not used the provided scope takes care of cancellation.
47+
* Note that the resulting value of [launchIn] is not used and the provided scope takes care of cancellation.
4848
*/
4949
public fun <T> Flow<T>.launchIn(scope: CoroutineScope): Job = scope.launch {
5050
collect() // tail-call

0 commit comments

Comments
 (0)