diff --git a/documentation/articles/static-linux-getting-started.md b/documentation/articles/static-linux-getting-started.md index f5fa427b1..1dfed6928 100644 --- a/documentation/articles/static-linux-getting-started.md +++ b/documentation/articles/static-linux-getting-started.md @@ -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: @@ -267,7 +267,7 @@ import Glibc #elseif os(Windows) import ucrt #else -#error(Unknown platform) +#error("Unknown platform") #endif ``` @@ -294,7 +294,7 @@ import Musl #elseif os(Windows) import ucrt #else -#error(Unknown platform) +#error("Unknown platform") #endif ```