Skip to content

Commit e77bbeb

Browse files
rxweilattner
authored andcommitted
Fix typo (#735)
1 parent a04f4c2 commit e77bbeb

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

proposals/0158-package-manager-manifest-api-redesign.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,7 @@ access modifier is `public` for all APIs unless specified.
304304
private init(name: String, type: LibraryType? = nil, targets: [String])
305305
}
306306

307-
/// Create a libary product.
307+
/// Create a library product.
308308
static func library(name: String, type: LibraryType? = nil, targets: [String]) -> Library
309309

310310
/// Create an executable product.
@@ -508,8 +508,8 @@ access modifier is `public` for all APIs unless specified.
508508
name: "Paper",
509509
products: [
510510
.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"]),
513513
],
514514
dependencies: [
515515
.package(url: "http://github.com/SwiftyJSON/SwiftyJSON", from: "1.2.3"),
@@ -549,9 +549,9 @@ let package = Package(
549549
name: "Paper",
550550
products: [
551551
.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"]),
555555
],
556556
dependencies: [
557557
.package(url: "http://github.com/SwiftyJSON/SwiftyJSON", from: "1.2.3"),

0 commit comments

Comments
 (0)