File tree 2 files changed +2
-2
lines changed
binary-compatibility-validator/reference-public-api
kotlinx-coroutines-core/common/src/flow
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -826,7 +826,7 @@ public abstract interface class kotlinx/coroutines/flow/FlowCollector {
826
826
827
827
public final class kotlinx/coroutines/flow/FlowKt {
828
828
public static final field DEFAULT_CONCURRENCY_PROPERTY_NAME Ljava/lang/String;
829
- public static final fun BehaviourSubject ()Ljava/lang/Object;
829
+ public static final fun BehaviorSubject ()Ljava/lang/Object;
830
830
public static final fun PublishSubject ()Ljava/lang/Object;
831
831
public static final fun ReplaySubject ()Ljava/lang/Object;
832
832
public static final fun asFlow (Ljava/lang/Iterable;)Lkotlinx/coroutines/flow/Flow;
Original file line number Diff line number Diff line change @@ -104,7 +104,7 @@ public fun <T> Flow<T>.subscribeOn(context: CoroutineContext): Flow<T> = noImpl(
104
104
* @suppress
105
105
*/
106
106
@Deprecated(message = " Use BroadcastChannel.asFlow()" , level = DeprecationLevel .ERROR )
107
- public fun BehaviourSubject (): Any = noImpl()
107
+ public fun BehaviorSubject (): Any = noImpl()
108
108
109
109
/* *
110
110
* `ReplaySubject` is not supported. The closest analogue is buffered [BroadcastChannel][kotlinx.coroutines.channels.BroadcastChannel].
You can’t perform that action at this time.
0 commit comments