aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2010-05-01 17:35:19 +0000
committerChris Lattner <sabre@nondot.org>2010-05-01 17:35:19 +0000
commit4c50b697bbf76c13f5b7860518a5ac0484dbbc90 (patch)
tree923a1a955aa466da74e388b0ffe70051f0e0d503
parentbfe7e91c1297f6f8c033790f64e59f0a1c9f6b3e (diff)
fix a broken link, diagnostickinds.td was fissioned.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102851 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--docs/InternalsManual.html12
1 files changed, 6 insertions, 6 deletions
diff --git a/docs/InternalsManual.html b/docs/InternalsManual.html
index 5d75eaa453..daec6b0194 100644
--- a/docs/InternalsManual.html
+++ b/docs/InternalsManual.html
@@ -145,13 +145,13 @@ diagnostic :).</p>
pieces, this section describes them and talks about best practices when adding
a new diagnostic.</p>
-<!-- ============================ -->
-<h4>The DiagnosticKinds.def file</h4>
-<!-- ============================ -->
+<!-- ============================== -->
+<h4>The Diagnostic*Kinds.def files</h4>
+<!-- ============================== -->
-<p>Diagnostics are created by adding an entry to the <tt><a
-href="http://llvm.org/svn/llvm-project/cfe/trunk/include/clang/Basic/DiagnosticKinds.def"
->DiagnosticKinds.def</a></tt> file. This file encodes the unique ID of the
+<p>Diagnostics are created by adding an entry to one of the <tt>
+clang/Basic/Diagnostic*Kinds.def</tt> files, depending on what library will
+be using it. This file encodes the unique ID of the
diagnostic (as an enum, the first argument), the severity of the diagnostic
(second argument) and the English translation + format string.</p>