Skip to content

Commit 796ff25

Browse files
committed
chore: Remove some trailing commas from the manifest that trip up certain swift language versions and environments.
1 parent 0bfc7b0 commit 796ff25

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

Package.swift

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,15 +36,15 @@ let package = Package(
3636
dependencies: [
3737
.product(name: "Atomics", package: "swift-atomics"),
3838
.product(name: "NIOCore", package: "swift-nio"),
39-
],
39+
]
4040
),
4141
.executableTarget(
4242
name: "ExampleMTELG",
43-
dependencies: [.target(name: "NIOAsyncRuntime")],
43+
dependencies: [.target(name: "NIOAsyncRuntime")]
4444
),
4545
.executableTarget(
4646
name: "ExampleNIOThreadPool",
47-
dependencies: [.target(name: "NIOAsyncRuntime")],
47+
dependencies: [.target(name: "NIOAsyncRuntime")]
4848
),
4949
.testTarget(
5050
name: "NIOAsyncRuntimeTests",
@@ -54,7 +54,7 @@ let package = Package(
5454
.product(name: "NIOCore", package: "swift-nio"),
5555
.product(name: "NIOFoundationCompat", package: "swift-nio"),
5656
.product(name: "NIOTestUtils", package: "swift-nio"),
57-
],
57+
]
5858
),
5959
]
6060
)

0 commit comments

Comments
 (0)