diff options
author | James Dennett <jdennett@google.com> | 2012-06-17 05:33:25 +0000 |
---|---|---|
committer | James Dennett <jdennett@google.com> | 2012-06-17 05:33:25 +0000 |
commit | f12438711983babbb07db962dee777b55f33e90b (patch) | |
tree | 10cbe082a9c532b7157a4527f372cc8a0bc49ca5 /clang/lib/Sema/SemaCodeComplete.cpp | |
parent | d9faf1c7db1b27301239f7155905b44066350ea2 (diff) | |
download | bcm5719-llvm-f12438711983babbb07db962dee777b55f33e90b.tar.gz bcm5719-llvm-f12438711983babbb07db962dee777b55f33e90b.zip |
Documentation cleanup: fix two typos, rief -> brief and Descripts -> Describes
llvm-svn: 158630
Diffstat (limited to 'clang/lib/Sema/SemaCodeComplete.cpp')
-rw-r--r-- | clang/lib/Sema/SemaCodeComplete.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/lib/Sema/SemaCodeComplete.cpp b/clang/lib/Sema/SemaCodeComplete.cpp index bfe9fea058d..5cab990d33f 100644 --- a/clang/lib/Sema/SemaCodeComplete.cpp +++ b/clang/lib/Sema/SemaCodeComplete.cpp @@ -1181,7 +1181,7 @@ bool ResultBuilder::IsImpossibleToSatisfy(NamedDecl *ND) const { return false; } -/// \rief Determines whether the given declaration is an Objective-C +/// \brief Determines whether the given declaration is an Objective-C /// instance variable. bool ResultBuilder::IsObjCIvar(NamedDecl *ND) const { return isa<ObjCIvarDecl>(ND); @@ -4656,7 +4656,7 @@ void Sema::CodeCompleteObjCPropertyFlags(Scope *S, ObjCDeclSpec &ODS) { Results.data(),Results.size()); } -/// \brief Descripts the kind of Objective-C method that we want to find +/// \brief Describes the kind of Objective-C method that we want to find /// via code completion. enum ObjCMethodKind { MK_Any, ///< Any kind of method, provided it means other specified criteria. |