File tree Expand file tree Collapse file tree 1 file changed +1
-1
lines changed
kotlinx-coroutines-core/common/src/flow Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ import kotlin.native.concurrent.*
21
21
* neither does a coroutine started by the [Flow.launchIn] function. An active collector of a state flow is called a _subscriber_.
22
22
*
23
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.
24
+ * the initial value. The value of mutable state flow can be updated by setting its [value] property.
25
25
* Updates to the [value] are always [conflated][Flow.conflate]. So a slow collector skips fast updates,
26
26
* but always collects the most recently emitted value.
27
27
*
You can’t perform that action at this time.
0 commit comments