[cfe-commits] r160197 - /cfe/trunk/include/clang/AST/Comment.h

Dmitri Gribenko gribozavr at gmail.com
Fri Jul 13 15:36:49 PDT 2012


Author: gribozavr
Date: Fri Jul 13 17:36:49 2012
New Revision: 160197

URL: http://llvm.org/viewvc/llvm-project?rev=160197&view=rev
Log:
Comment.h: reword comments

Modified:
    cfe/trunk/include/clang/AST/Comment.h

Modified: cfe/trunk/include/clang/AST/Comment.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/AST/Comment.h?rev=160197&r1=160196&r2=160197&view=diff
==============================================================================
--- cfe/trunk/include/clang/AST/Comment.h (original)
+++ cfe/trunk/include/clang/AST/Comment.h Fri Jul 13 17:36:49 2012
@@ -664,8 +664,8 @@
   }
 };
 
-/// Verbatim block (e. g., preformatted code).  Verbatim block has an opening
-/// and a closing command and contains multiple lines of text
+/// A verbatim block command (e. g., preformatted code).  Verbatim block has an
+/// opening and a closing command and contains multiple lines of text
 /// (VerbatimBlockLineComment nodes).
 class VerbatimBlockComment : public BlockCommandComment {
 protected:
@@ -717,8 +717,9 @@
   }
 };
 
-/// Verbatim line.  Verbatim line has an opening command and a single line of
-/// text (up to the newline after the opening command).
+/// A verbatim line command.  Verbatim line has an opening command, a single
+/// line of text (up to the newline after the opening command) and has no
+/// closing command.
 class VerbatimLineComment : public BlockCommandComment {
 protected:
   StringRef Text;





More information about the cfe-commits mailing list