[go: up one dir, main page]

Skip to content

Commit

Permalink
Merge pull request ashleymills#267 from bgreenlee/patch-1
Browse files Browse the repository at this point in the history
Fix typos in README
  • Loading branch information
hamchapman authored Apr 7, 2018
2 parents a495b01 + 78b52b2 commit 58cc881
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`
Expand Down Expand Up @@ -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?
Expand Down

0 comments on commit 58cc881

Please sign in to comment.