Skip to content
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
11 changes: 2 additions & 9 deletions _includes/getting-started/_installing.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,6 @@

If you don't have Swift installed, [install it first](/install).

To test that you have Swift installed, run `swift --version` in the terminal.
To test that you have Swift installed, run `swift --version` from your shell or terminal app.

### Swift Package Manager

When you install Swift you’ll also get the latest stable version of the Swift build tool and package manager, also known as Swift Package Manager, or SwiftPM .

SwiftPM does lots of things:
- Build your project with `swift build`.
- Test your project with `swift test`.
- Run your project with `swift run`.
Swift comes bundled with the [Swift Package Manager (SwiftPM)]({% link package-manager/index.md %}), which manages the distribution of your Swift code, and allows easy importing of other Swift packages into your apps.
2 changes: 1 addition & 1 deletion getting-started/_use-cases.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## Using Swift

Below are some examples of the many use cases of Swift.
If you want to get started with a lanbuage reference, [The Swift Programming Language](https://docs.swift.org/swift-book/) book is the best resource. However, if you'd prefer to get straight into writing some code, here are some examples of the many use cases of Swift.

<ul class="use-case-list">

Expand Down
2 changes: 1 addition & 1 deletion package-manager/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ layout: page
title: Package Manager
---

The Swift Package Manager is a tool for managing the distribution of Swift code.
The Swift Package Manager (SwiftPM) is a tool for managing the distribution of Swift code.
It's integrated with the Swift build system
to automate the process of downloading, compiling, and linking dependencies.

Expand Down