Skip to content

Commit 2d7ef8a

Browse files
committed
Replace PublishSubject to InputSubject
1 parent 0dc512d commit 2d7ef8a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/Action/Action.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public final class Action<Input, Element> {
2727
/// This subject also includes inputs as aguments of execute().
2828
/// All inputs are always appear in this subject even if the action is not enabled.
2929
/// Thus, inputs count equals elements count + errors count.
30-
public let inputs = PublishSubject<Input>()
30+
public let inputs = InputSubject<Input>()
3131

3232
/// Errors aggrevated from invocations of execute().
3333
/// Delivered on whatever scheduler they were sent from.

0 commit comments

Comments
 (0)