diff options
| author | George Burgess IV <george.burgess.iv@gmail.com> | 2016-09-01 01:26:58 +0000 |
|---|---|---|
| committer | George Burgess IV <george.burgess.iv@gmail.com> | 2016-09-01 01:26:58 +0000 |
| commit | 52d07de058c6a0233e4b9e729e5e24e920f0e98e (patch) | |
| tree | c7bb3b2646f53796500a349b161e76bd2aeaa2c8 | |
| parent | e2d0f636543f9fc62296b0b2029c78b4c97a81ed (diff) | |
| download | bcm5719-llvm-52d07de058c6a0233e4b9e729e5e24e920f0e98e.tar.gz bcm5719-llvm-52d07de058c6a0233e4b9e729e5e24e920f0e98e.zip | |
Fix typos in comments.
llvm-svn: 280333
| -rw-r--r-- | clang/lib/Sema/SemaExprObjC.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/clang/lib/Sema/SemaExprObjC.cpp b/clang/lib/Sema/SemaExprObjC.cpp index 8f0d4ff6957..d208a322c83 100644 --- a/clang/lib/Sema/SemaExprObjC.cpp +++ b/clang/lib/Sema/SemaExprObjC.cpp @@ -2645,7 +2645,7 @@ ExprResult Sema::BuildInstanceMessage(Expr *Receiver, CollectMultipleMethodsInGlobalPool(Sel, Methods, true/*InstanceFirst*/, true/*CheckTheOther*/, typeBound); if (!Methods.empty()) { - // We chose the first method as the initial condidate, then try to + // We choose the first method as the initial candidate, then try to // select a better one. Method = Methods[0]; @@ -2701,7 +2701,7 @@ ExprResult Sema::BuildInstanceMessage(Expr *Receiver, false/*InstanceFirst*/, true/*CheckTheOther*/); if (!Methods.empty()) { - // We chose the first method as the initial condidate, then try + // We choose the first method as the initial candidate, then try // to select a better one. Method = Methods[0]; @@ -2789,7 +2789,7 @@ ExprResult Sema::BuildInstanceMessage(Expr *Receiver, true/*InstanceFirst*/, false/*CheckTheOther*/); if (!Methods.empty()) { - // We chose the first method as the initial condidate, then try + // We choose the first method as the initial candidate, then try // to select a better one. Method = Methods[0]; |

