summaryrefslogtreecommitdiffstats
path: root/clang/docs/InternalsManual.html
diff options
context:
space:
mode:
authorSebastian Redl <sebastian.redl@getdesigned.at>2010-07-07 23:42:27 +0000
committerSebastian Redl <sebastian.redl@getdesigned.at>2010-07-07 23:42:27 +0000
commitbbace2a63dcc14c782dd99519bb1202c58908668 (patch)
tree0cda15fd3b72b336f4fc79da84ace14b1cc36072 /clang/docs/InternalsManual.html
parente182370eda7c54ee2d02070e19993397b562f5a0 (diff)
downloadbcm5719-llvm-bbace2a63dcc14c782dd99519bb1202c58908668.tar.gz
bcm5719-llvm-bbace2a63dcc14c782dd99519bb1202c58908668.zip
Fix a few errors in the internals doc.
llvm-svn: 107838
Diffstat (limited to 'clang/docs/InternalsManual.html')
-rw-r--r--clang/docs/InternalsManual.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/clang/docs/InternalsManual.html b/clang/docs/InternalsManual.html
index 5f6d8dd2b71..7aa26e00a4f 100644
--- a/clang/docs/InternalsManual.html
+++ b/clang/docs/InternalsManual.html
@@ -118,8 +118,8 @@ classes somewhere else, or introduce some other solution.</p>
<p>The Clang Diagnostics subsystem is an important part of how the compiler
communicates with the human. Diagnostics are the warnings and errors produced
when the code is incorrect or dubious. In Clang, each diagnostic produced has
-(at the minimum) a unique ID, a <a href="#SourceLocation">SourceLocation</a> to
-"put the caret", an English translation associated with it, and a severity (e.g.
+(at the minimum) a unique ID, an English translation associated with it, a <a
+href="#SourceLocation">SourceLocation</a> to "put the caret", and a severity (e.g.
<tt>WARNING</tt> or <tt>ERROR</tt>). They can also optionally include a number
of arguments to the dianostic (which fill in "%0"'s in the string) as well as a
number of source ranges that related to the diagnostic.</p>
@@ -127,7 +127,7 @@ number of source ranges that related to the diagnostic.</p>
<p>In this section, we'll be giving examples produced by the Clang command line
driver, but diagnostics can be <a href="#DiagnosticClient">rendered in many
different ways</a> depending on how the DiagnosticClient interface is
-implemented. A representative example of a diagonstic is:</p>
+implemented. A representative example of a diagnostic is:</p>
<pre>
t.c:38:15: error: invalid operands to binary expression ('int *' and '_Complex float')
OpenPOWER on IntegriCloud