]> granicus.if.org Git - clang/commitdiff
Documentation cleanup: fix two typos, rief -> brief and Descripts -> Describes
authorJames Dennett <jdennett@google.com>
Sun, 17 Jun 2012 05:33:25 +0000 (05:33 +0000)
committerJames Dennett <jdennett@google.com>
Sun, 17 Jun 2012 05:33:25 +0000 (05:33 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@158630 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Sema/SemaCodeComplete.cpp

index bfe9fea058d8109736ab3f7f1ae96c7acc3b09ce..5cab990d33fc71f1fd0ffb5b85ea96020a761c85 100644 (file)
@@ -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.