Skip to content
Merged
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
6 changes: 3 additions & 3 deletions documentation/articles/static-linux-getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ Hello, world!

### What about package dependencies?

Swift packages that make use of Foundation or Swift NIO should just
Swift packages that make use of Foundation or SwiftNIO should just
work. If you try to use a package that uses the C library, however,
you may have a little work to do. Such packages often contain files
with code like the following:
Expand All @@ -267,7 +267,7 @@ import Glibc
#elseif os(Windows)
import ucrt
#else
#error(Unknown platform)
#error("Unknown platform")
#endif
```

Expand All @@ -294,7 +294,7 @@ import Musl
#elseif os(Windows)
import ucrt
#else
#error(Unknown platform)
#error("Unknown platform")
#endif
```

Expand Down