summaryrefslogtreecommitdiffstats
path: root/include/clang/Basic/DiagnosticCommentKinds.td
diff options
context:
space:
mode:
authorDmitri Gribenko <gribozavr@gmail.com>2012-07-13 00:44:24 +0000
committerDmitri Gribenko <gribozavr@gmail.com>2012-07-13 00:44:24 +0000
commit3f38bf2d441fac379c427f86153fbb0cb41256c6 (patch)
tree85044422828656cba608b746c8e3e6937697aeb9 /include/clang/Basic/DiagnosticCommentKinds.td
parent3d986980bd02594b1a5aa7b9f9f68d201621ced7 (diff)
Comment parsing: repaint the bikesched: rename 'HTML open tags' to 'HTML start tags' and 'HTML close tags' to 'HTML end tags' according to HTML spec.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@160153 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Basic/DiagnosticCommentKinds.td')
-rw-r--r--include/clang/Basic/DiagnosticCommentKinds.td22
1 files changed, 11 insertions, 11 deletions
diff --git a/include/clang/Basic/DiagnosticCommentKinds.td b/include/clang/Basic/DiagnosticCommentKinds.td
index a4b974ae82..890606a85a 100644
--- a/include/clang/Basic/DiagnosticCommentKinds.td
+++ b/include/clang/Basic/DiagnosticCommentKinds.td
@@ -13,12 +13,12 @@ let CategoryName = "Documentation Issue" in {
// HTML parsing errors. These are under -Wdocumentation to make sure the user
// knows that we didn't parse something as he might expect.
-def warn_doc_html_open_tag_expected_quoted_string : Warning<
+def warn_doc_html_start_tag_expected_quoted_string : Warning<
"expected quoted string after equals sign">,
InGroup<Documentation>, DefaultIgnore;
-def warn_doc_html_open_tag_expected_ident_or_greater : Warning<
- "HTML opening tag prematurely ended, expected attribute name or '>'">,
+def warn_doc_html_start_tag_expected_ident_or_greater : Warning<
+ "HTML start tag prematurely ended, expected attribute name or '>'">,
InGroup<Documentation>, DefaultIgnore;
def note_doc_html_tag_started_here : Note<
@@ -26,20 +26,20 @@ def note_doc_html_tag_started_here : Note<
// HTML semantic errors
-def warn_doc_html_close_forbidden : Warning<
- "HTML closing tag '%0' is forbidden">,
+def warn_doc_html_end_forbidden : Warning<
+ "HTML end tag '%0' is forbidden">,
InGroup<DocumentationHTML>, DefaultIgnore;
-def warn_doc_html_close_unbalanced : Warning<
- "HTML closing tag does not match any opening tag">,
+def warn_doc_html_end_unbalanced : Warning<
+ "HTML end tag does not match any start tag">,
InGroup<DocumentationHTML>, DefaultIgnore;
-def warn_doc_html_open_close_mismatch : Warning<
- "HTML opening tag '%0' closed by '%1'">,
+def warn_doc_html_start_end_mismatch : Warning<
+ "HTML start tag '%0' closed by '%1'">,
InGroup<DocumentationHTML>, DefaultIgnore;
-def note_doc_html_closing_tag : Note<
- "closing tag">;
+def note_doc_html_end_tag : Note<
+ "end tag">;
// Commands