Skip to content

Commit 3361f78

Browse files
committed
Removed trailing collection commas.
1 parent a3eb712 commit 3361f78

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Package@swift-6.2.swift

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ import PackageDescription
99
.package(url: "https://github.com/swift-server/async-http-client.git", from: "1.22.0"),
1010

1111
// SwiftSoup is used to parse the HTML tree
12-
.package(url: "https://github.com/scinfu/SwiftSoup.git", from: "2.9.5"),
12+
.package(url: "https://github.com/scinfu/SwiftSoup.git", from: "2.9.5")
1313
]
1414

1515
let targetDependencies: [Target.Dependency] = [
1616
"SwiftSoup",
17-
.product(name: "AsyncHTTPClient", package: "async-http-client"),
17+
.product(name: "AsyncHTTPClient", package: "async-http-client")
1818
]
1919

2020
let plugins: [Target.PluginUsage] = [
@@ -25,7 +25,7 @@ import PackageDescription
2525
let dependencies: [PackageDescription.Package.Dependency] = [
2626
// SwiftSoup is used to parse the HTML tree
2727
.package(url: "https://github.com/scinfu/SwiftSoup.git", from: "2.9.5"),
28-
.package(url: "https://github.com/apple/swift-docc-plugin", from: "1.4.3"),
28+
.package(url: "https://github.com/apple/swift-docc-plugin", from: "1.4.3")
2929
]
3030

3131
let targetDependencies: [Target.Dependency] = [
@@ -44,7 +44,7 @@ let package = Package(
4444
.iOS(.v18),
4545
.macOS(.v12),
4646
.watchOS(.v8),
47-
.tvOS(.v15),
47+
.tvOS(.v15)
4848
],
4949
products: [
5050
.library(
@@ -68,6 +68,6 @@ let package = Package(
6868
"FaviconFinder"
6969
],
7070
plugins: plugins
71-
),
71+
)
7272
]
7373
)

0 commit comments

Comments
 (0)