Skip to content

Commit 526a5e9

Browse files
Have consistent capitalized Swift Package Manager name in docs
1 parent 88d2516 commit 526a5e9

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

Documentation/EvolutionIdeas.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ Bug: [SR-883](https://bugs.swift.org/browse/SR-883)
5959

6060
## Resource Support
6161

62-
The Swift package manager needs a story for how packages should specify their
62+
The Swift Package Manager needs a story for how packages should specify their
6363
resources to include with products.
6464

6565
Thread: N/A

Documentation/Internals/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Swift Package Manager Developer Docs
22

3-
This directory contains documentation on the engineering design decisions and internals of the Swift package manager. It is primarily focused at developers interested in working on the Swift package manager, but may also be useful to advanced users wanting to understand exactly how the package manager behaves.
3+
This directory contains documentation on the engineering design decisions and internals of the Swift Package Manager. It is primarily focused at developers interested in working on the Swift Package Manager, but may also be useful to advanced users wanting to understand exactly how the package manager behaves.
44

55
* [Swift-based Manifest Format](SwiftBasedManifestFormat.md)
66

Documentation/PackageDescription.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ you can find the `Package.resolved` file inside your `.xcodeproj` or `.xcworkspa
277277
/// while making sure you don't update to a version with breaking changes,
278278
/// and helps to prevent conflicts in your dependency graph.
279279
///
280-
/// The following example allows the Swift package manager to select a version
280+
/// The following example allows the Swift Package Manager to select a version
281281
/// like a `1.2.3`, `1.2.4`, or `1.3.0`, but not `2.0.0`.
282282
///
283283
/// .package(url: "https://example.com/example-package.git", from: "1.2.3"),
@@ -299,7 +299,7 @@ static func package(url: String, _ requirement: Package.Dependency.Requirement)
299299
/// Add a package dependency starting with a specific minimum version, up to
300300
/// but not including a specified maximum version.
301301
///
302-
/// The following example allows the Swift package manager to pick
302+
/// The following example allows the Swift Package Manager to pick
303303
/// versions `1.2.3`, `1.2.4`, `1.2.5`, but not `1.2.6`.
304304
///
305305
/// .package(url: "https://example.com/example-package.git", "1.2.3"..<"1.2.6"),
@@ -313,7 +313,7 @@ static func package(url: String, _ range: Range<Version>) -> Package.Dependency
313313
/// Add a package dependency starting with a specific minimum version, going
314314
/// up to and including a specific maximum version.
315315
///
316-
/// The following example allows the Swift package manager to pick
316+
/// The following example allows the Swift Package Manager to pick
317317
/// versions 1.2.3, 1.2.4, 1.2.5, as well as 1.2.6.
318318
///
319319
/// .package(url: "https://example.com/example-package.git", "1.2.3"..."1.2.6"),

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ If you are interested in contributing, please read the [Community Proposal](Docu
115115

116116
Instructions for setting up the development environment are available [here](Documentation/Development.md).
117117

118-
The Swift package manager uses [llbuild](https://github.com/apple/swift-llbuild) as the underlying build system for compiling source files. It is also open source and part of the Swift project.
118+
The Swift Package Manager uses [llbuild](https://github.com/apple/swift-llbuild) as the underlying build system for compiling source files. It is also open source and part of the Swift project.
119119

120120
---
121121

Sources/PackageDescription/Target.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -684,7 +684,7 @@ extension Target.Dependency {
684684
/// - parameters:
685685
/// - name: The name of the dependency, either a target or a product.
686686
///
687-
/// The Swift package manager creates the by-name dependency after it has loaded the package graph.
687+
/// The Swift Package Manager creates the by-name dependency after it has loaded the package graph.
688688
@available(_PackageDescription, obsoleted: 5.3)
689689
public static func byName(name: String) -> Target.Dependency {
690690
#if PACKAGE_DESCRIPTION_4

0 commit comments

Comments
 (0)