diff --git a/_includes/getting-started/_installing.md b/_includes/getting-started/_installing.md index d5ed961b3..869d3b73f 100644 --- a/_includes/getting-started/_installing.md +++ b/_includes/getting-started/_installing.md @@ -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. diff --git a/getting-started/_use-cases.html b/getting-started/_use-cases.html index bb51e71b6..7f30b2850 100644 --- a/getting-started/_use-cases.html +++ b/getting-started/_use-cases.html @@ -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.