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/SourceManager.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/SourceManager.h')
-rw-r--r-- | include/clang/Basic/SourceManager.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/include/clang/Basic/SourceManager.h b/include/clang/Basic/SourceManager.h index c4eb0b5fa7..d5657c70e1 100644 --- a/include/clang/Basic/SourceManager.h +++ b/include/clang/Basic/SourceManager.h @@ -7,9 +7,10 @@ // //===----------------------------------------------------------------------===// /// -/// \file Defines the SourceManager interface. +/// \file +/// \brief Defines the SourceManager interface. /// -/// There are three different types of locations in a file\: a spelling +/// There are three different types of locations in a file: a spelling /// location, an expansion location, and a presumed location. /// /// Given an example of: @@ -19,7 +20,7 @@ /// /// and then later on a use of min: /// \code -/// \#line 17 +/// #line 17 /// return min(a, b); /// \endcode /// |