Skip to content

Commit df010b0

Browse files
authored
Merge pull request #3248 from practicalswift/typo-fixes-20160628
[gardening] Fix recently introduced typos
2 parents 2642eab + e3305f3 commit df010b0

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

lib/Sema/TypeCheckCaptures.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//===--- TypeCheckCaptures.cpp - Capture Analysis ------------------------===//
1+
//===--- TypeCheckCaptures.cpp - Capture Analysis -------------------------===//
22
//
33
// This source file is part of the Swift.org open source project
44
//

test/decl/typealias/generic.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -201,12 +201,12 @@ func takesSugaredType1(m: ConcreteClass.TA<Float>) {
201201
takesUnsugaredType1(m: m)
202202
}
203203

204-
// FIXME: Something's wrong with SpecializeExpr here
204+
// FIXME: Something is wrong with SpecializeExpr here
205205
let _ = ConcreteStruct.O<Int>(123) // expected-error {{cannot invoke value of type 'Optional<Int>.Type' with argument list '(Int)'}}
206206

207207
// Qualified lookup of generic typealiases nested inside generic contexts
208208

209-
// FIXME: Something's wrong with SpecializeExpr here
209+
// FIXME: Something is wrong with SpecializeExpr here
210210
let _ = GenericClass<Int>.TA<Float>(a: 4.0, b: 1) // expected-error {{'Int' is not convertible to 'Float'}}
211211
let _ = GenericClass<Int>.TA<Float>(a: 1, b: 4.0) // expected-error {{'Int' is not convertible to 'Float'}}
212212

0 commit comments

Comments
 (0)