From 371196511aac0cca7c38213cfec2a588c2d4f6df Mon Sep 17 00:00:00 2001 From: Arthur Ariel Sabintsev Date: Tue, 24 Nov 2015 10:37:49 -0500 Subject: [PATCH] Spelling is hard. Fixed spelling issue --- Zephyr.podspec | 2 +- Zephyr.swift | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Zephyr.podspec b/Zephyr.podspec index 05cc28b..d2509e8 100755 --- a/Zephyr.podspec +++ b/Zephyr.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "Zephyr" - s.version = "1.3.0" + s.version = "1.3.1" s.summary = "Effortlessly synchronize NSUserDefaults over iCloud" s.description = <<-DESC diff --git a/Zephyr.swift b/Zephyr.swift index fd66eaa..7e0d040 100644 --- a/Zephyr.swift +++ b/Zephyr.swift @@ -452,10 +452,10 @@ extension Zephyr { Observation method for NSUbiquitousKeyValueStoreDidChangeExternallyNotification */ - func keysDidChangeOnCloud(notificaiton: NSNotification) { - if notificaiton.name == NSUbiquitousKeyValueStoreDidChangeExternallyNotification { + func keysDidChangeOnCloud(notification: NSNotification) { + if notification.name == NSUbiquitousKeyValueStoreDidChangeExternallyNotification { - guard let userInfo = notificaiton.userInfo, + guard let userInfo = notification.userInfo, cloudKeys = userInfo[NSUbiquitousKeyValueStoreChangedKeysKey] as? [String], localStoredDate = ZephyrLocalStoreDictionary[ZephyrSyncKey] as? NSDate, remoteStoredDate = ZephyrRemoteStoreDictionary[ZephyrSyncKey] as? NSDate where remoteStoredDate.timeIntervalSince1970 > localStoredDate.timeIntervalSince1970 else {