@@ -55,7 +55,7 @@ public extension Reactive where Base: UIButton {
5555 /// Binds enabled state of action to button, and subscribes to rx_tap to execute action with given input transform.
5656 /// These subscriptions are managed in a private, inaccessible dispose bag. To cancel
5757 /// them, call bindToAction with another action or nil.
58- public func bindTo< Input, Output> ( action: Action < Input , Output > ? , inputTransform: @escaping ( Base ) -> ( Input ) ) {
58+ public func bindTo< Input, Output> ( action: Action < Input , Output > ? , inputTransform: @escaping ( Base ) -> ( Input ) ) {
5959 // This effectively disposes of any existing subscriptions.
6060
6161 // Technically, this file is only included on tv/iOS platforms,
@@ -77,7 +77,7 @@ public extension Reactive where Base: UIButton {
7777 /// Binds enabled state of action to button, and subscribes to rx_tap to execute action with given input value.
7878 /// These subscriptions are managed in a private, inaccessible dispose bag. To cancel
7979 /// them, call bindToAction with another action or nil.
80- public func bindTo< Input, Output> ( action: Action < Input , Output > ? , input: Input ) {
80+ public func bindTo< Input, Output> ( action: Action < Input , Output > ? , input: Input ) {
8181 self . bindTo ( action: action) { _ in input }
8282 }
8383}
0 commit comments