Skip to content

Commit e5f36b9

Browse files
committed
Remove underscores from directory names and update Package.swift
1 parent 0c633ee commit e5f36b9

File tree

6 files changed

+4
-4
lines changed

6 files changed

+4
-4
lines changed

Package.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
// swift-tools-version:6.0
1+
// swift-tools-version:6.2
22

33
import PackageDescription
44

55
extension String {
6-
static let rfc1123: Self = "RFC_1123"
6+
static let rfc1123: Self = "RFC 1123"
77
}
88

99
extension Target.Dependency {
1010
static var rfc1123: Self { .target(name: .rfc1123) }
11-
static var rfc1035: Self { .product(name: "RFC_1035", package: "swift-rfc-1035") }
11+
static var rfc1035: Self { .product(name: "RFC 1035", package: "swift-rfc-1035") }
1212
}
1313

1414
let package = Package(

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ Then add it to your target:
3737
.target(
3838
name: "YourTarget",
3939
dependencies: [
40-
.product(name: "RFC_1123", package: "swift-rfc-1123")
40+
.product(name: "RFC 1123", package: "swift-rfc-1123")
4141
]
4242
)
4343
```
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)