summaryrefslogtreecommitdiffstats
path: root/docs/ReleaseNotes.html
diff options
context:
space:
mode:
authorChandler Carruth <chandlerc@gmail.com>2011-11-29 00:24:20 +0000
committerChandler Carruth <chandlerc@gmail.com>2011-11-29 00:24:20 +0000
commitee77d3d70973dcfdb7e571f1139801f6dbc144a3 (patch)
tree7e837637889dd66d33f1578b6ce8dcbdace2de52 /docs/ReleaseNotes.html
parentf9e2e188471ed14cf5cdfea4ab2610dff0048ab2 (diff)
Fix a spelling error pointed out by Sebastien, and tidy up the
formatting here a bit... mostly to my preferred bikeshed-blue. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@145337 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/ReleaseNotes.html')
-rw-r--r--docs/ReleaseNotes.html5
1 files changed, 3 insertions, 2 deletions
diff --git a/docs/ReleaseNotes.html b/docs/ReleaseNotes.html
index 4adf86dcb0..6bc13b6e4e 100644
--- a/docs/ReleaseNotes.html
+++ b/docs/ReleaseNotes.html
@@ -90,8 +90,9 @@ A few improvements since the 2.9 release that have a particularly high impact:
<li>Substantially shorter messages due to better recovery, fewer include
stacks, and tuning verbose features such as 'a.k.a.' type printing.</li>
<li>
- Able to recover and correct from misspelled type names at the begging of statements. For example, Clang now emits:
- <pre><b>t.c:6:3: <span class="error">error:</span> use of undeclared identifier 'integer'; did you mean 'Integer'?</b>
+ Able to recover and correct from misspelled type names at the beging of
+ statements. For example, Clang now emits:
+<pre><b>t.c:6:3: <span class="error">error:</span> use of undeclared identifier 'integer'; did you mean 'Integer'?</b>
integer *i = 0;
<span class="caret">^~~~~~~</span>
Integer