diff options
author | James Dennett <jdennett@google.com> | 2012-07-02 07:01:42 +0000 |
---|---|---|
committer | James Dennett <jdennett@google.com> | 2012-07-02 07:01:42 +0000 |
commit | 2f7f5b1f5ff023cb8c4008ae53a12b09e3ea2622 (patch) | |
tree | 9cef20c93816e840401a5cea949a5e4e2ebbd169 /include/clang/Basic/Module.h | |
parent | 435d2682893f5ebdaa652b567073ff223f5ada4f (diff) |
Documentation cleanup: reformatting/fixing up file comments so that they have
\file and \brief markup and appear in Doxygen's summaries (and eventually at
http://clang.llvm.org/doxygen/files.html). Fixed up another couple of minor
glitches in the docs at the same time.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@159517 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Basic/Module.h')
-rw-r--r-- | include/clang/Basic/Module.h | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/include/clang/Basic/Module.h b/include/clang/Basic/Module.h index e6c2ba429d..c8027f4702 100644 --- a/include/clang/Basic/Module.h +++ b/include/clang/Basic/Module.h @@ -6,10 +6,11 @@ // License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// -// -// This file defines the Module class, which describes a module in the source -// code. -// +/// +/// \file +/// \brief Defines the clang::Module class, which describes a module in the +/// source code. +/// //===----------------------------------------------------------------------===// #ifndef LLVM_CLANG_BASIC_MODULE_H #define LLVM_CLANG_BASIC_MODULE_H @@ -137,7 +138,7 @@ public: llvm::SmallVector<ExportDecl, 2> Exports; /// \brief Describes an exported module that has not yet been resolved - /// (perhaps because tASThe module it refers to has not yet been loaded). + /// (perhaps because the module it refers to has not yet been loaded). struct UnresolvedExportDecl { /// \brief The location of the 'export' keyword in the module map file. SourceLocation ExportLoc; |