We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0637e8a commit 4e1d3f5Copy full SHA for 4e1d3f5
kotlinx-coroutines-core/common/src/flow/SharedFlow.kt
@@ -134,9 +134,9 @@ public interface SharedFlow<out T> : Flow<T> {
134
*
135
* ### Not stable for inheritance
136
137
- * **`MutableSharedFlow` interface is not stable for inheritance in 3rd party libraries**, as new methods
+ * **The `MutableSharedFlow` interface is not stable for inheritance in 3rd party libraries**, as new methods
138
* might be added to this interface in the future, but is stable for use.
139
- * Use `MutableSharedFlow(...)` constructor function to create an implementation.
+ * Use the `MutableSharedFlow(...)` constructor function to create an implementation.
140
*/
141
@ExperimentalCoroutinesApi
142
public interface MutableSharedFlow<T> : SharedFlow<T>, FlowCollector<T> {
0 commit comments