[cfe-commits] r107838 - /cfe/trunk/docs/InternalsManual.html
Sebastian Redl
sebastian.redl at getdesigned.at
Wed Jul 7 16:42:27 PDT 2010
Author: cornedbee
Date: Wed Jul 7 18:42:27 2010
New Revision: 107838
URL: http://llvm.org/viewvc/llvm-project?rev=107838&view=rev
Log:
Fix a few errors in the internals doc.
Modified:
cfe/trunk/docs/InternalsManual.html
Modified: cfe/trunk/docs/InternalsManual.html
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/docs/InternalsManual.html?rev=107838&r1=107837&r2=107838&view=diff
==============================================================================
--- cfe/trunk/docs/InternalsManual.html (original)
+++ cfe/trunk/docs/InternalsManual.html Wed Jul 7 18:42:27 2010
@@ -118,8 +118,8 @@
<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 @@
<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')
More information about the cfe-commits
mailing list