We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 22087ef commit 66fe1c8Copy full SHA for 66fe1c8
kotlinx-coroutines-core/common/src/flow/operators/Merge.kt
@@ -34,7 +34,7 @@ public val DEFAULT_CONCURRENCY: Int = systemProp(DEFAULT_CONCURRENCY_PROPERTY_NA
34
* Transforms elements emitted by the original flow by applying [transform], that returns another flow,
35
* and then concatenating and flattening these flows.
36
*
37
- * This method is is a shortcut for `map(transform).flattenConcat()`. See [flattenConcat].
+ * This method is a shortcut for `map(transform).flattenConcat()`. See [flattenConcat].
38
39
* Note that even though this operator looks very familiar, we discourage its usage in a regular application-specific flows.
40
* Most likely, suspending operation in [map] operator will be sufficient and linear transformations are much easier to reason about.
0 commit comments