Explorar o código

Merge pull request #15 from damonjones/master

Fix typo in typealias name
Ashley Mills %!s(int64=10) %!d(string=hai) anos
pai
achega
eca2517c69
Modificáronse 1 ficheiros con 2 adicións e 2 borrados
  1. 2 2
      Reachability.swift

+ 2 - 2
Reachability.swift

@@ -33,7 +33,7 @@ public let ReachabilityChangedNotification = "ReachabilityChangedNotification"
 public class Reachability: NSObject, Printable {
 
     public typealias NetworkReachable = (Reachability) -> ()
-    public typealias NetworkUneachable = (Reachability) -> ()
+    public typealias NetworkUnreachable = (Reachability) -> ()
 
     public enum NetworkStatus: Printable {
 
@@ -54,7 +54,7 @@ public class Reachability: NSObject, Printable {
     // MARK: - *** Public properties ***
 
     public var whenReachable: NetworkReachable?
-    public var whenUnreachable: NetworkUneachable?
+    public var whenUnreachable: NetworkUnreachable?
     public var reachableOnWWAN: Bool
     public var notificationCenter = NSNotificationCenter.defaultCenter()