Merge pull request #628 from garnett/patch-1

Rename outdated class name
This commit is contained in:
Krunoslav Zaher 2016-04-19 10:04:59 +02:00
commit c7fc68bfc1
1 changed files with 2 additions and 2 deletions

View File

@ -16,7 +16,7 @@ Observer that enforces interface binding rules:
* can't bind errors (in debug builds binding of errors causes `fatalError` in release builds errors are being logged)
* ensures binding is performed on main thread
`InterfaceBindingObserver` doesn't retain target interface and in case owned interface element is released, element isn't bound.
`UIBindingObserver` doesn't retain target interface and in case owned interface element is released, element isn't bound.
*/
public class UIBindingObserver<UIElementType, Value where UIElementType: AnyObject> : ObserverType {
public typealias E = Value
@ -59,4 +59,4 @@ public class UIBindingObserver<UIElementType, Value where UIElementType: AnyObje
public func asObserver() -> AnyObserver<Value> {
return AnyObserver(eventHandler: on)
}
}
}