mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
[gardening] Fix recently introduced typos
This commit is contained in:
@@ -425,13 +425,13 @@ extension String {
|
||||
}
|
||||
|
||||
extension String {
|
||||
@available(*, unavailable, message: "Operator '+' cannot be used to append a String to a seqeunce of strings")
|
||||
@available(*, unavailable, message: "Operator '+' cannot be used to append a String to a sequence of strings")
|
||||
public static func + <S : Sequence>(lhs: S, rhs: String) -> Never
|
||||
where S.Iterator.Element == String {
|
||||
fatalError()
|
||||
}
|
||||
|
||||
@available(*, unavailable, message: "Operator '+' cannot be used to append a String to a seqeunce of strings")
|
||||
@available(*, unavailable, message: "Operator '+' cannot be used to append a String to a sequence of strings")
|
||||
public static func + <S : Sequence>(lhs: String, rhs: S) -> Never
|
||||
where S.Iterator.Element == String {
|
||||
fatalError()
|
||||
|
||||
Reference in New Issue
Block a user