Skip to content

Commit b1deb64

Browse files
authored
Getting started guide cleanup (#220)
* Getting started guide cleanup * Remove linux target from the version in the platform independent example
1 parent a37aa20 commit b1deb64

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

Documentation/SwiftlyDocs.docc/getting-started.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -39,23 +39,23 @@ Swiftly will install itself and download the latest available Swift toolchain. F
3939
```
4040
$ swift --version
4141
42-
Swift version 6.0.1 (swift-6.0.1-RELEASE)
43-
Target: x86_64-unknown-linux-gnu
42+
Swift version 6.0.3 (swift-6.0.3-RELEASE)
43+
...
4444
45-
$ swift build # Build with the latest (5.8.1) toolchain
45+
$ swift build # Build with the latest (6.0.3) toolchain
4646
```
4747

4848
You can install (and use) another release toolchain:
4949

5050
```
51-
$ swiftly install --use 5.7
51+
$ swiftly install --use 5.10
5252
5353
$ swift --version
5454
55-
Swift version 5.7.2 (swift-5.7.2-RELEASE)
56-
Target: x86_64-unknown-linux-gnu
55+
Swift version 5.10.1 (swift-5.10.1-RELEASE)
56+
...
5757
58-
$ swift build # Build with the 5.7.2 toolchain
58+
$ swift build # Build with the 5.10.1 toolchain
5959
```
6060

6161
Quickly test your package with the latest nightly snapshot to prepare for the next release:
@@ -74,7 +74,7 @@ $ swiftly uninstall main-snapshot
7474

7575
# Proxy
7676

77-
Swiftly downloads a list of toolchains from https://www.swift.org/ and retrieves them from Apple/Akamai CDN via https://download.swift.org.
77+
Swiftly downloads a list of toolchains from https://www.swift.org/ and retrieves them from CDN via https://download.swift.org.
7878
If your environment requires a proxy, Swiftly will attempt to use the standard environment variables `http_proxy`, `HTTP_PROXY`, `https_proxy` or `HTTPS_PROXY` to determine which proxy server to use instead of making a direct connection.
7979

8080
To download latest nightly snapshot using a proxy:

0 commit comments

Comments
 (0)