aboutsummaryrefslogtreecommitdiff
path: root/Sema
diff options
context:
space:
mode:
authorSteve Naroff <snaroff@apple.com>2008-02-09 17:25:18 +0000
committerSteve Naroff <snaroff@apple.com>2008-02-09 17:25:18 +0000
commit4bd6d0c31a0d998d8c26b02597aeb830528049b9 (patch)
tree4bd0566e4775a6f8328c867d5afaade69cc2b58e /Sema
parent336ed0b79b8abd0a25ac0083a2d43049e450dab0 (diff)
Fix spelling in comment.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@46906 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'Sema')
-rw-r--r--Sema/SemaExpr.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Sema/SemaExpr.cpp b/Sema/SemaExpr.cpp
index 179117e96e..2b63c10d98 100644
--- a/Sema/SemaExpr.cpp
+++ b/Sema/SemaExpr.cpp
@@ -905,7 +905,7 @@ void Sema::DefaultFunctionArrayConversion(Expr *&e) {
if (t->isFunctionType())
ImpCastExprToType(e, Context.getPointerType(t));
else if (const ArrayType *ary = t->getAsArrayType()) {
- // Make sure we don't loose qualifiers when dealing with typedefs. Example:
+ // Make sure we don't lose qualifiers when dealing with typedefs. Example:
// typedef int arr[10];
// void test2() {
// const arr b;