We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
distinctUtilChanged
distinctUntilChanged
1 parent dba7de1 commit 95087a7Copy full SHA for 95087a7
kotlinx-coroutines-core/common/src/flow/operators/Distinct.kt
@@ -15,7 +15,7 @@ import kotlin.native.concurrent.*
15
/**
16
* Returns flow where all subsequent repetitions of the same value are filtered out.
17
*
18
- * Note that any instance of [StateFlow] already behaves as if `distinctUtilChanged` operator is
+ * Note that any instance of [StateFlow] already behaves as if `distinctUntilChanged` operator is
19
* applied to it, so applying `distinctUntilChanged` to a `StateFlow` has no effect.
20
* See [StateFlow] documentation on Operator Fusion.
21
* Also, repeated application of `distinctUntilChanged` operator on any flow has no effect.
0 commit comments