Fix typos

This commit is contained in:
practicalswift
2015-12-25 13:48:47 +01:00
parent fc9887fa6a
commit 22e10737e2
53 changed files with 64 additions and 64 deletions

View File

@@ -2436,7 +2436,7 @@ public:
if (HaveDot)
return;
// If instance type is type alias, showing users that the contructed
// If instance type is type alias, showing users that the constructed
// type is the typealias instead of the underlying type of the alias.
Optional<Type> Result = None;
if (auto AT = MT->getInstanceType()) {
@@ -3311,7 +3311,7 @@ public:
static bool isPotentialSignatureMatch(ArrayRef<Type> TupleEles,
ArrayRef<Type> ExprTypes,
DeclContext *DC) {
// Not likely to be a mactch if users provide more arguments than expected.
// Not likely to be a match if users provide more arguments than expected.
if (ExprTypes.size() >= TupleEles.size())
return false;
for (unsigned I = 0; I < ExprTypes.size(); ++ I) {