We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 09874cf commit 22d3e58Copy full SHA for 22d3e58
kotlinx-coroutines-core/common/src/flow/operators/Context.kt
@@ -171,7 +171,7 @@ public fun <T> Flow<T>.buffer(capacity: Int = BUFFERED): Flow<T> = buffer(capaci
171
* ```
172
*
173
* Note that `conflate` operator is a shortcut for [buffer] with `capacity` of [Channel.CONFLATED][Channel.CONFLATED],
174
- * with is, in turn, a shortcut to a buffer that only keeps the latest element as
+ * which is, in turn, a shortcut to a buffer that only keeps the latest element as
175
* created by `buffer(onBufferOverflow = `[`BufferOverflow.DROP_OLDEST`][BufferOverflow.DROP_OLDEST]`)`.
176
177
* ### Operator fusion
0 commit comments