From 7e0f1ee35fe98d6751b9e736410f8254795b5f68 Mon Sep 17 00:00:00 2001 From: Dmitri Gribenko Date: Tue, 26 Jun 2012 17:54:58 +0000 Subject: [PATCH] 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 --- include/clang/AST/ASTContext.h | 4 ++-- 1 file 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 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; -- 2.40.0