Skip to content

Commit b2d0105

Browse files
Have consistent capitalized Swift Package Manager name in docs
1 parent 4c4476f commit b2d0105

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
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
@@ -280,7 +280,7 @@ your package.
280280
///
281281
/// .package(url: "https://example.com/example-package.git", from: "1.2.3"),
282282
///
283-
/// will allow the Swift package manager to select a version like a "1.2.3",
283+
/// will allow the Swift Package Manager to select a version like a "1.2.3",
284284
/// "1.2.4" or "1.3.0" but not "2.0.0".
285285
///
286286
/// - Parameters:
@@ -300,7 +300,7 @@ public static func package(url: String, _ requirement: Package.Dependency.Requir
300300
///
301301
/// .package(url: "https://example.com/example-package.git", "1.2.3"..<"1.2.6"),
302302
///
303-
/// will allow the Swift package manager to pick versions 1.2.3, 1.2.4, 1.2.5, but not 1.2.6.
303+
/// will allow the Swift Package Manager to pick versions 1.2.3, 1.2.4, 1.2.5, but not 1.2.6.
304304
///
305305
/// - Parameters:
306306
/// - url: The valid Git URL of the package.
@@ -314,7 +314,7 @@ public static func package(url: String, _ range: Range<Version>) -> Package.Depe
314314
///
315315
/// .package(url: "https://example.com/example-package.git", "1.2.3"..."1.2.6"),
316316
///
317-
/// will allow the Swift package manager to pick versions 1.2.3, 1.2.4, 1.2.5, as well as 1.2.6.
317+
/// will allow the Swift Package Manager to pick versions 1.2.3, 1.2.4, 1.2.5, as well as 1.2.6.
318318
///
319319
/// - Parameters:
320320
/// - url: The valid Git URL of the package.

Documentation/Usage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -480,7 +480,7 @@ version will be most compatible with future version of the package manager.
480480

481481
## Editing a Package
482482

483-
Swift package manager supports editing dependencies, when your work requires
483+
Swift Package Manager supports editing dependencies, when your work requires
484484
making a change to one of your dependencies (for example, to fix a bug, or add
485485
a new API). The package manager moves the dependency into a location under the
486486
`Packages/` directory where it can be edited.

0 commit comments

Comments
 (0)