Skip to content

Commit 4e1d3f5

Browse files
elizarov1zaman
andauthored
Update kotlinx-coroutines-core/common/src/flow/SharedFlow.kt
Co-authored-by: Ibraheem Zaman <[email protected]>
1 parent 0637e8a commit 4e1d3f5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

kotlinx-coroutines-core/common/src/flow/SharedFlow.kt

+2-2
Original file line numberDiff line numberDiff line change
@@ -134,9 +134,9 @@ public interface SharedFlow<out T> : Flow<T> {
134134
*
135135
* ### Not stable for inheritance
136136
*
137-
* **`MutableSharedFlow` interface is not stable for inheritance in 3rd party libraries**, as new methods
137+
* **The `MutableSharedFlow` interface is not stable for inheritance in 3rd party libraries**, as new methods
138138
* might be added to this interface in the future, but is stable for use.
139-
* Use `MutableSharedFlow(...)` constructor function to create an implementation.
139+
* Use the `MutableSharedFlow(...)` constructor function to create an implementation.
140140
*/
141141
@ExperimentalCoroutinesApi
142142
public interface MutableSharedFlow<T> : SharedFlow<T>, FlowCollector<T> {

0 commit comments

Comments
 (0)