Skip to content

Commit b5bd396

Browse files
authored
Fix typo in DESIGN.md (#285)
There's no such product or entity as "SPM", this contraction is just as invalid as "MOS" would be for macOS, or "SNIO" for SwiftNIO. All marketing and documentation materials consistently refer to it as "SwiftPM", and we should stay consistent in our codebase too. This also simplifies code search, as anything named as "SPM" almost never shows up in results when searching globally for "SwiftPM".
1 parent 3a78f70 commit b5bd396

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

DESIGN.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -341,7 +341,7 @@ CC=clang swiftly run +latest make
341341

342342
## Detailed Design
343343

344-
Swiftly itself will be a SPM project consisting of several executable products, one per supported platform, and all of these will share the core module that handles argument parsing, printing help information, and dispatching commands. Each platform’s executable will be built to statically link the stdlib so that they can be run without having installed Swift first.
344+
Swiftly itself will be a SwiftPM project consisting of several executable products, one per supported platform, and all of these will share the core module that handles argument parsing, printing help information, and dispatching commands. Each platform’s executable will be built to statically link the stdlib so that they can be run without having installed Swift first.
345345

346346
Within the core module, the following protocol will be defined:
347347

@@ -440,7 +440,7 @@ Determining whether the system has these installed or not is a bit of a tricky p
440440

441441
If neither of these steps find the package, then we'll consider the dependency as not installed, and print a message that shows users how to install it using the system package manager (e.g. `apt` on Ubuntu).
442442

443-
SPM has some code for detecting system libraries too, so it's possible we could integrate that here instead of using this approach.
443+
SwiftPM has some code for detecting system libraries too, so it's possible we could integrate that here instead of using this approach.
444444

445445
#### Downloading a toolchain
446446

0 commit comments

Comments
 (0)