diff options
author | Nico Weber <nicolasweber@gmx.de> | 2019-08-21 15:52:44 +0000 |
---|---|---|
committer | Nico Weber <nicolasweber@gmx.de> | 2019-08-21 15:52:44 +0000 |
commit | 138a815a003e61e18c11d53cc1b17d20dd484355 (patch) | |
tree | 23bedc33a00bd9694d5b921bef963f00017adf90 /clang/lib | |
parent | 764b0fd5a37168313cd7f8d82753b10392ff2b2b (diff) | |
download | bcm5719-llvm-138a815a003e61e18c11d53cc1b17d20dd484355.tar.gz bcm5719-llvm-138a815a003e61e18c11d53cc1b17d20dd484355.zip |
clang: Fix typo in comment
llvm-svn: 369542
Diffstat (limited to 'clang/lib')
-rw-r--r-- | clang/lib/Sema/SemaObjCProperty.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Sema/SemaObjCProperty.cpp b/clang/lib/Sema/SemaObjCProperty.cpp index e5c01450143..9166d231647 100644 --- a/clang/lib/Sema/SemaObjCProperty.cpp +++ b/clang/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 && |