Skip to content

Commit 820836d

Browse files
authored
Fix lib name in Strings.md (#168)
1 parent d307241 commit 820836d

File tree

1 file changed

+1
-1
lines changed
  • Sources/EmbeddedSwift/Documentation.docc/UsingEmbeddedSwift

1 file changed

+1
-1
lines changed

Sources/EmbeddedSwift/Documentation.docc/UsingEmbeddedSwift/Strings.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
How to enable full Unicode-compliant string support in Embedded Swift
44

5-
Both StaticString and String types are available in Embedded Swift. As is the case in desktop Swift, certain operations on strings require Unicode data tables for strict Unicode compliance. In Embedded Swift these data tables are provided as a separate static library (libUnicodeDataTables.a) that users need to link in manually – if they need to use these string operations. If the library is required, linking will fail due to missing on one or more of the following symbols:
5+
Both StaticString and String types are available in Embedded Swift. As is the case in desktop Swift, certain operations on strings require Unicode data tables for strict Unicode compliance. In Embedded Swift these data tables are provided as a separate static library (libswiftUnicodeDataTables.a) that users need to link in manually – if they need to use these string operations. If the library is required, linking will fail due to missing on one or more of the following symbols:
66

77
```
88
_swift_stdlib_getAge

0 commit comments

Comments
 (0)