Skip to content

Commit

Permalink
Fixing indention
Browse files Browse the repository at this point in the history
  • Loading branch information
floskel committed Sep 9, 2016
1 parent 9d8a646 commit 360cd87
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Action.swift
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ public final class Action<Input, Element> {

self.inputs.subscribe(onNext: { [weak self] (input) in
self?._execute(input)
}, onError: nil, onCompleted: nil, onDisposed: nil).addDisposableTo(disposeBag)
}, onError: nil, onCompleted: nil, onDisposed: nil).addDisposableTo(disposeBag)
}
}

Expand Down
4 changes: 2 additions & 2 deletions UIBarButtonItem+Action.swift
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ public extension UIBarButtonItem {

self.rx.tap.subscribe(onNext: { (_) in
action.execute()
}, onError: nil, onCompleted: nil, onDisposed: nil)
.addDisposableTo(self.actionDisposeBag)
}, onError: nil, onCompleted: nil, onDisposed: nil)
.addDisposableTo(self.actionDisposeBag)
}
}
}
Expand Down

0 comments on commit 360cd87

Please sign in to comment.