aboutsummaryrefslogtreecommitdiff
path: root/Package.swift
diff options
context:
space:
mode:
authorBen <31181527+benedom@users.noreply.github.com>2024-01-24 08:29:55 +0100
committerGitHub <noreply@github.com>2024-01-24 08:29:55 +0100
commit2d06f266ae901b3a92b55dd27fc0e857bf841280 (patch)
tree056bf71938e6b1446542ea282a975186735381d3 /Package.swift
parent5a5a7459d563980634a1f143edab6288165369d9 (diff)
parent2935379e0a610a882100895fcf90b2ba224216f7 (diff)
Merge pull request #2 from leoz/master
Make SwiftLint happy
Diffstat (limited to 'Package.swift')
-rw-r--r--Package.swift4
1 files changed, 2 insertions, 2 deletions
diff --git a/Package.swift b/Package.swift
index ca79f2e..546b8e4 100644
--- a/Package.swift
+++ b/Package.swift
@@ -11,7 +11,7 @@ let package = Package(
// Products define the executables and libraries a package produces, making them visible to other packages.
.library(
name: "SwiftyCrop",
- targets: ["SwiftyCrop"]),
+ targets: ["SwiftyCrop"])
],
targets: [
// Targets are the basic building blocks of a package, defining a module or a test suite.
@@ -20,6 +20,6 @@ let package = Package(
name: "SwiftyCrop"),
.testTarget(
name: "SwiftyCropTests",
- dependencies: ["SwiftyCrop"]),
+ dependencies: ["SwiftyCrop"])
]
)