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
diff --git a/include/clang/AST/ASTContext.h b/include/clang/AST/ASTContext.h
index a367878..7c13907 100644
--- a/include/clang/AST/ASTContext.h
+++ b/include/clang/AST/ASTContext.h
@@ -429,7 +429,7 @@
   /// 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 @@
     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;