Skip to content

Have consistent capitalized Swift Package Manager name in docs #2986

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 20, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Documentation/EvolutionIdeas.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ Bug: [SR-883](https://bugs.swift.org/browse/SR-883)

## Resource Support

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

Thread: N/A
Expand Down
2 changes: 1 addition & 1 deletion Documentation/Internals/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Swift Package Manager Developer Docs

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.
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.

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

Expand Down
6 changes: 3 additions & 3 deletions Documentation/PackageDescription.md
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ you can find the `Package.resolved` file inside your `.xcodeproj` or `.xcworkspa
/// while making sure you don't update to a version with breaking changes,
/// and helps to prevent conflicts in your dependency graph.
///
/// The following example allows the Swift package manager to select a version
/// The following example allows the Swift Package Manager to select a version
/// like a `1.2.3`, `1.2.4`, or `1.3.0`, but not `2.0.0`.
///
/// .package(url: "https://example.com/example-package.git", from: "1.2.3"),
Expand All @@ -299,7 +299,7 @@ static func package(url: String, _ requirement: Package.Dependency.Requirement)
/// Add a package dependency starting with a specific minimum version, up to
/// but not including a specified maximum version.
///
/// The following example allows the Swift package manager to pick
/// The following example allows the Swift Package Manager to pick
/// versions `1.2.3`, `1.2.4`, `1.2.5`, but not `1.2.6`.
///
/// .package(url: "https://example.com/example-package.git", "1.2.3"..<"1.2.6"),
Expand All @@ -313,7 +313,7 @@ static func package(url: String, _ range: Range<Version>) -> Package.Dependency
/// Add a package dependency starting with a specific minimum version, going
/// up to and including a specific maximum version.
///
/// The following example allows the Swift package manager to pick
/// The following example allows the Swift Package Manager to pick
/// versions 1.2.3, 1.2.4, 1.2.5, as well as 1.2.6.
///
/// .package(url: "https://example.com/example-package.git", "1.2.3"..."1.2.6"),
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ If you are interested in contributing, please read the [Community Proposal](Docu

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

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.
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.

---

Expand Down
2 changes: 1 addition & 1 deletion Sources/PackageDescription/Target.swift
Original file line number Diff line number Diff line change
Expand Up @@ -684,7 +684,7 @@ extension Target.Dependency {
/// - parameters:
/// - name: The name of the dependency, either a target or a product.
///
/// The Swift package manager creates the by-name dependency after it has loaded the package graph.
/// The Swift Package Manager creates the by-name dependency after it has loaded the package graph.
@available(_PackageDescription, obsoleted: 5.3)
public static func byName(name: String) -> Target.Dependency {
#if PACKAGE_DESCRIPTION_4
Expand Down