]> granicus.if.org Git - clang/commitdiff
Comment.h: reword comments
authorDmitri Gribenko <gribozavr@gmail.com>
Fri, 13 Jul 2012 22:36:49 +0000 (22:36 +0000)
committerDmitri Gribenko <gribozavr@gmail.com>
Fri, 13 Jul 2012 22:36:49 +0000 (22:36 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@160197 91177308-0d34-0410-b5e6-96231b3b80d8

include/clang/AST/Comment.h

index a397703513c50b4364458e96d4304d6dbaab9fd0..28e87bfacff8cd9c81fcf25396693e08f5a51c33 100644 (file)
@@ -664,8 +664,8 @@ public:
   }
 };
 
-/// 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 @@ public:
   }
 };
 
-/// 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;