From 8aba766224d905422b2ad8ea42cf7eb4ee3dc05e Mon Sep 17 00:00:00 2001 From: Thane Gill Date: Wed, 27 Jan 2016 11:26:52 -0800 Subject: [PATCH] [bindNext] Change error message to "Binding error: \(error)" --- RxCocoa/Common/Observable+Bind.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/RxCocoa/Common/Observable+Bind.swift b/RxCocoa/Common/Observable+Bind.swift index 4dc99ad7..cff3762e 100644 --- a/RxCocoa/Common/Observable+Bind.swift +++ b/RxCocoa/Common/Observable+Bind.swift @@ -96,7 +96,7 @@ extension ObservableType { @warn_unused_result(message="http://git.io/rxs.ud") public func bindNext(onNext: E -> Void) -> Disposable { return subscribe(onNext: onNext, onError: { error in - let error = "Binding error to variable: \(error)" + let error = "Binding error: \(error)" #if DEBUG rxFatalError(error) #else @@ -104,4 +104,4 @@ extension ObservableType { #endif }) } -} \ No newline at end of file +}