From fb97732d85b336250ff3f7b1cd6927101a789aeb Mon Sep 17 00:00:00 2001 From: Jesse Farless Date: Sat, 14 May 2016 10:44:39 +0200 Subject: [PATCH] Fix argument key in comment --- RxCocoa/Common/DelegateProxyType.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RxCocoa/Common/DelegateProxyType.swift b/RxCocoa/Common/DelegateProxyType.swift index 0bc0bb04..485b9e35 100644 --- a/RxCocoa/Common/DelegateProxyType.swift +++ b/RxCocoa/Common/DelegateProxyType.swift @@ -70,7 +70,7 @@ In case of UITableView / UIScrollView, there is extension UIScrollView { public func rx_createDelegateProxy() -> RxScrollViewDelegateProxy { - return RxScrollViewDelegateProxy(view: self) + return RxScrollViewDelegateProxy(parentObject: self) } ....