summaryrefslogtreecommitdiff
path: root/lib/Sema
diff options
context:
space:
mode:
authorNico Weber <nicolasweber@gmx.de>2019-08-21 15:52:44 +0000
committerNico Weber <nicolasweber@gmx.de>2019-08-21 15:52:44 +0000
commit47f5868aba0896ab1925c830a327a97a7b0a4eef (patch)
treea8094b1a7a26dc464a6b3c73a45ff398e1158285 /lib/Sema
parent7eb3ca2f31b715ed0e84e9482961bb41fbf5b178 (diff)
downloadclang-47f5868aba0896ab1925c830a327a97a7b0a4eef.tar.gz
clang: Fix typo in comment
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@369542 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Sema')
-rw-r--r--lib/Sema/SemaObjCProperty.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Sema/SemaObjCProperty.cpp b/lib/Sema/SemaObjCProperty.cpp
index e5c0145014..9166d23164 100644
--- a/lib/Sema/SemaObjCProperty.cpp
+++ b/lib/Sema/SemaObjCProperty.cpp
@@ -735,7 +735,7 @@ static void checkARCPropertyImpl(Sema &S, SourceLocation propertyImplLoc,
return;
// If the ivar is private, and it's implicitly __unsafe_unretained
- // becaues of its type, then pretend it was actually implicitly
+ // because of its type, then pretend it was actually implicitly
// __strong. This is only sound because we're processing the
// property implementation before parsing any method bodies.
if (ivarLifetime == Qualifiers::OCL_ExplicitNone &&