From b8aab01b86e3e7a0bf4f81759796fc849ee79765 Mon Sep 17 00:00:00 2001 From: hachinobu Date: Sun, 13 Mar 2016 23:40:14 +0900 Subject: [PATCH] =?UTF-8?q?fix=20typo.=20idenfifier=20=E2=86=92=20identifi?= =?UTF-8?q?er?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- RxSwift/Observables/Implementations/Debug.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/RxSwift/Observables/Implementations/Debug.swift b/RxSwift/Observables/Implementations/Debug.swift index c92c9a28..b74b9a17 100644 --- a/RxSwift/Observables/Implementations/Debug.swift +++ b/RxSwift/Observables/Implementations/Debug.swift @@ -10,8 +10,8 @@ import Foundation let dateFormat = "yyyy-MM-dd HH:mm:ss.SSS" -func logEvent(idenfifier: String, dateFormat: NSDateFormatter, content: String) { - print("\(dateFormat.stringFromDate(NSDate())): \(idenfifier) -> \(content)") +func logEvent(identifier: String, dateFormat: NSDateFormatter, content: String) { + print("\(dateFormat.stringFromDate(NSDate())): \(identifier) -> \(content)") } class Debug_ : Sink, ObserverType {