[cfe-commits] r158630 - /cfe/trunk/lib/Sema/SemaCodeComplete.cpp
James Dennett
jdennett at google.com
Sat Jun 16 22:33:25 PDT 2012
Author: jdennett
Date: Sun Jun 17 00:33:25 2012
New Revision: 158630
URL: http://llvm.org/viewvc/llvm-project?rev=158630&view=rev
Log:
Documentation cleanup: fix two typos, rief -> brief and Descripts -> Describes
Modified:
cfe/trunk/lib/Sema/SemaCodeComplete.cpp
Modified: cfe/trunk/lib/Sema/SemaCodeComplete.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Sema/SemaCodeComplete.cpp?rev=158630&r1=158629&r2=158630&view=diff
==============================================================================
--- cfe/trunk/lib/Sema/SemaCodeComplete.cpp (original)
+++ cfe/trunk/lib/Sema/SemaCodeComplete.cpp Sun Jun 17 00:33:25 2012
@@ -1181,7 +1181,7 @@
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 @@
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.
More information about the cfe-commits
mailing list