Skip to content

Commit e628c54

Browse files
authored
Polish welcome message
1 parent bd68843 commit e628c54

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

Sources/Swiftly/Init.swift

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -67,21 +67,21 @@ struct Init: SwiftlyCommand {
6767
// Give the user the prompt and the choice to abort at this point.
6868
if !assumeYes {
6969
#if os(Linux)
70-
let sigMsg = " In the process of installing the new toolchain swiftly will add swift.org GnuPG keys into your keychain to verify the integrity of the downloads."
70+
let sigMsg = " In the process of installing the new toolchain, swiftly will add swift.org GnuPG keys into your keychain to verify the integrity of the downloads."
7171
#else
7272
let sigMsg = ""
7373
#endif
7474
let installMsg = if !skipInstall {
75-
"\nOnce swiftly is installed it will install the latest available swift toolchain.\(sigMsg)\n"
75+
"\nOnce swiftly is installed it will install the latest available Swift toolchain.\(sigMsg)\n"
7676
} else { "" }
7777

7878
SwiftlyCore.print("""
79-
Swiftly will be installed into the following locations:
79+
Swiftly will install files into the following locations:
8080
81-
\(Swiftly.currentPlatform.swiftlyHomeDir.path) - Data and configuration files directory including toolchains
82-
\(Swiftly.currentPlatform.swiftlyBinDir.path) - Executables installation directory
81+
\(Swiftly.currentPlatform.swiftlyHomeDir.path) - Directory for configuration files
82+
\(Swiftly.currentPlatform.swiftlyBinDir.path) - Links to the binaries of the active toolchain
8383
84-
These locations can be changed with SWIFTLY_HOME_DIR and SWIFTLY_BIN_DIR environment variables and run this again.
84+
These locations can be changed by setting the environment variables SWIFTLY_HOME_DIR and SWIFTLY_BIN_DIR before running 'swiftly init' again.
8585
\(installMsg)
8686
""")
8787

0 commit comments

Comments
 (0)