[gardening] Fix recently introduced typos

This commit is contained in:
practicalswift
2017-04-25 20:49:32 +02:00
parent 861f70e13d
commit ff827e0455
11 changed files with 12 additions and 12 deletions

View File

@@ -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()