Преглед изворни кода

Merge pull request #267 from bgreenlee/patch-1

Fix typos in README
Hamilton Chapman пре 7 година
родитељ
комит
58cc881bd4
1 измењених фајлова са 3 додато и 3 уклоњено
  1. 3 3
      README.md

+ 3 - 3
README.md

@@ -103,9 +103,9 @@ To install Reachability.swift with Carthage:
 
 3. Run `carthage update`.
 
-4. Drag `ReachabilitySwift.framework` from the `Carthage/Build/iOS/` directory to the `Linked Frameworks and Libraries` section of your Xcode project’s `General` settings.
+4. Drag `Reachability.framework` from the `Carthage/Build/iOS/` directory to the `Linked Frameworks and Libraries` section of your Xcode project’s `General` settings.
 
-5. Add `$(SRCROOT)/Carthage/Build/iOS/ReachabilitySwiift.framework` to `Input Files` of Run Script Phase for Carthage.
+5. Add `$(SRCROOT)/Carthage/Build/iOS/Reachability.framework` to `Input Files` of Run Script Phase for Carthage.
 
 6. In your code import Reachability likse so:
 `import Reachability`
@@ -187,7 +187,7 @@ and for stopping notifications
 
 ```swift
 reachability.stopNotifier()
-NotificationCenter.default.removeObserver(self, name: .eachabilityChanged, object: reachability)
+NotificationCenter.default.removeObserver(self, name: .reachabilityChanged, object: reachability)
 ```
 
 ## Want to help?