We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent edd584a commit 5eca49cCopy full SHA for 5eca49c
kotlinx-coroutines-core/common/src/flow/StateFlow.kt
@@ -21,7 +21,7 @@ import kotlin.native.concurrent.*
21
* neither does a coroutine started by the [Flow.launchIn] function. An active collector of a state flow is called a _subscriber_.
22
*
23
* A [mutable state flow][MutableStateFlow] is created using `MutableStateFlow(value)` constructor function with
24
- * the initial value. The value of mutable state flow can be updated by setting its [value] property.
+ * the initial value. The value of mutable state flow can be updated by setting its [value] property.
25
* Updates to the [value] are always [conflated][Flow.conflate]. So a slow collector skips fast updates,
26
* but always collects the most recently emitted value.
27
0 commit comments