Skip to content

Commit 8d7df7a

Browse files
Fixed the links on the README
1 parent 462c9b9 commit 8d7df7a

File tree

1 file changed

+11
-8
lines changed

1 file changed

+11
-8
lines changed

README.md

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# WebPush
1+
# Swift WebPush
22

33
<p align="center">
44
<a href="https://swiftpackageindex.com/mochidev/swift-webpush">
@@ -16,19 +16,19 @@ A server-side Swift implementation of the WebPush standard.
1616

1717
## Quick Links
1818

19-
- [Documentation](https://swiftpackageindex.com/mochidev/swift-WebPush/documentation)
19+
- [Documentation](https://swiftpackageindex.com/mochidev/swift-webpush/documentation)
2020
- [Updates on Mastodon](https://mastodon.social/tags/SwiftWebPush)
2121

2222
## Installation
2323

2424
Add `WebPush` as a dependency in your `Package.swift` file to start using it. Then, add `import WebPush` to any file you wish to use the library in.
2525

26-
Please check the [releases](https://github.com/mochidev/WebPush/releases) for recommended versions.
26+
Please check the [releases](https://github.com/mochidev/swift-webpush/releases) for recommended versions.
2727

2828
```swift
2929
dependencies: [
3030
.package(
31-
url: "https://github.com/mochidev/WebPush.git",
31+
url: "https://github.com/mochidev/swift-webPush.git",
3232
.upToNextMinor(from: "0.1.1")
3333
),
3434
],
@@ -39,10 +39,13 @@ targets: [
3939
dependencies: [
4040
"WebPush",
4141
]
42-
)
43-
.testTarget(name: "MyPackageTests", dependencies: [
44-
"WebPushTesting",
45-
]
42+
),
43+
.testTarget(
44+
name: "MyPackageTests",
45+
dependencies: [
46+
"WebPushTesting",
47+
]
48+
),
4649
]
4750
```
4851

0 commit comments

Comments
 (0)