]> granicus.if.org Git - clang/commitdiff
Fix a spelling error pointed out by Sebastien, and tidy up the
authorChandler Carruth <chandlerc@gmail.com>
Tue, 29 Nov 2011 00:24:20 +0000 (00:24 +0000)
committerChandler Carruth <chandlerc@gmail.com>
Tue, 29 Nov 2011 00:24:20 +0000 (00:24 +0000)
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

docs/ReleaseNotes.html

index 4adf86dcb07b335867c3e3ee899d0cadcd874445..6bc13b6e4e821f734eea19072b35bec63c202811 100644 (file)
@@ -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