Documentation cleanup: fix two typos, rief -> brief and Descripts -> Describes

llvm-svn: 158630
This commit is contained in:
James Dennett
2012-06-17 05:33:25 +00:00
parent d9faf1c7db
commit f124387119

View 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.