Replace "doesn't" with "does not" in error message

This commit is contained in:
Mathias Baumann
2020-07-06 13:44:33 +02:00
parent 6e70aaf7ee
commit 8cdf14f1b3
6 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -1336,7 +1336,7 @@ bool TypeChecker::visit(Conditional const& _conditional)
_conditional.location(),
"True expression's type " +
trueType->toString() +
" doesn't match false expression's type " +
" does not match false expression's type " +
falseType->toString() +
"."
);