aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitri Gribenko <gribozavr@gmail.com>2012-06-26 17:54:58 +0000
committerDmitri Gribenko <gribozavr@gmail.com>2012-06-26 17:54:58 +0000
commit7e0f1ee35fe98d6751b9e736410f8254795b5f68 (patch)
tree9f61454f8a2368f7da5e3c05e3e3230e664e74d4
parentde376286f1276a694f465e797c5edb6222075137 (diff)
Fix comment: refer to documentation comments in general, not just Doxygen comments.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@159214 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/clang/AST/ASTContext.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/clang/AST/ASTContext.h b/include/clang/AST/ASTContext.h
index a3678780f6..7c13907bfe 100644
--- a/include/clang/AST/ASTContext.h
+++ b/include/clang/AST/ASTContext.h
@@ -429,7 +429,7 @@ public:
/// with a given declaration.
mutable llvm::DenseMap<const Decl *, const RawComment *> DeclComments;
- /// \brief Return the Doxygen-style comment attached to a given declaration,
+ /// \brief Return the documentation comment attached to a given declaration,
/// without looking into cache.
const RawComment *getRawCommentForDeclNoCache(const Decl *D) const;
@@ -438,7 +438,7 @@ public:
Comments.addComment(RC);
}
- /// \brief Return the Doxygen-style comment attached to a given declaration.
+ /// \brief Return the documentation comment attached to a given declaration.
/// Returns NULL if no comment is attached.
const RawComment *getRawCommentForDecl(const Decl *D) const;