Skip to content

Commit

Permalink
Correct trailing brace in transformWhile docs. (#3290)
Browse files Browse the repository at this point in the history
  • Loading branch information
lowasser committed May 18, 2022
1 parent b8c9aae commit b2188dd
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion kotlinx-coroutines-core/common/src/flow/operators/Limit.kt
Expand Up @@ -109,7 +109,6 @@ public fun <T> Flow<T>.takeWhile(predicate: suspend (T) -> Boolean): Flow<T> = f
* emit(progress) // always emit progress
* !progress.isDone() // continue while download is not done
* }
* }
* ```
*/
public fun <T, R> Flow<T>.transformWhile(
Expand Down

0 comments on commit b2188dd

Please sign in to comment.