Rename outdated class name

This commit is contained in:
Denis Lebedev 2016-04-18 22:45:21 +01:00
parent 3294458b87
commit 96de182dd3
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)
}
}
}