File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -254,7 +254,7 @@ Hello, world!
254254
255255### What about package dependencies?
256256
257- Swift packages that make use of Foundation or Swift NIO should just
257+ Swift packages that make use of Foundation or SwiftNIO should just
258258work. If you try to use a package that uses the C library, however,
259259you may have a little work to do. Such packages often contain files
260260with code like the following:
@@ -267,7 +267,7 @@ import Glibc
267267#elseif os (Windows )
268268import ucrt
269269#else
270- #error (Unknown platform)
270+ #error (" Unknown platform" )
271271#endif
272272```
273273
@@ -294,7 +294,7 @@ import Musl
294294#elseif os (Windows )
295295import ucrt
296296#else
297- #error (Unknown platform)
297+ #error (" Unknown platform" )
298298#endif
299299```
300300
You can’t perform that action at this time.
0 commit comments