@@ -304,7 +304,7 @@ access modifier is `public` for all APIs unless specified.
304
304
private init(name: String, type: LibraryType? = nil, targets: [String])
305
305
}
306
306
307
- /// Create a libary product.
307
+ /// Create a library product.
308
308
static func library(name: String, type: LibraryType? = nil, targets: [String]) -> Library
309
309
310
310
/// Create an executable product.
@@ -508,8 +508,8 @@ access modifier is `public` for all APIs unless specified.
508
508
name: "Paper",
509
509
products: [
510
510
.executable(name: "tool", targets: ["tool"]),
511
- .libary (name: "Paper", type: .static, targets: ["Paper"]),
512
- .libary (name: "PaperDy", type: .dynamic, targets: ["Paper"]),
511
+ .library (name: "Paper", type: .static, targets: ["Paper"]),
512
+ .library (name: "PaperDy", type: .dynamic, targets: ["Paper"]),
513
513
],
514
514
dependencies: [
515
515
.package(url: "http://github.com/SwiftyJSON/SwiftyJSON", from: "1.2.3"),
@@ -549,9 +549,9 @@ let package = Package(
549
549
name: "Paper",
550
550
products: [
551
551
.executable(name: "tool", targets: ["tool"]),
552
- .libary (name: "Paper", targets: ["Paper"]),
553
- .libary (name: "PaperStatic", type: .static, targets: ["Paper"]),
554
- .libary (name: "PaperDynamic", type: .dynamic, targets: ["Paper"]),
552
+ .library (name: "Paper", targets: ["Paper"]),
553
+ .library (name: "PaperStatic", type: .static, targets: ["Paper"]),
554
+ .library (name: "PaperDynamic", type: .dynamic, targets: ["Paper"]),
555
555
],
556
556
dependencies: [
557
557
.package(url: "http://github.com/SwiftyJSON/SwiftyJSON", from: "1.2.3"),
0 commit comments