Skip to content

Commit 0d35c42

Browse files
authored
Fix error message typo in stdlib/public/core/StaticString.swift (#70643)
1 parent 1fd1624 commit 0d35c42

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stdlib/public/core/StaticString.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ public struct StaticString: Sendable {
206206
start: utf8Start, count: utf8CodeUnitCount))
207207
} else {
208208
#if $Embedded
209-
fatalError("non-pointer representation not support in embedded Swift")
209+
fatalError("non-pointer representation not supported in embedded Swift")
210210
#else
211211
return unicodeScalar.withUTF8CodeUnits { body($0) }
212212
#endif

0 commit comments

Comments
 (0)