From ee77d3d70973dcfdb7e571f1139801f6dbc144a3 Mon Sep 17 00:00:00 2001 From: Chandler Carruth Date: Tue, 29 Nov 2011 00:24:20 +0000 Subject: [PATCH] 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 --- docs/ReleaseNotes.html | 5 +++-- 1 file 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:
  • Substantially shorter messages due to better recovery, fewer include stacks, and tuning verbose features such as 'a.k.a.' type printing.
  • - Able to recover and correct from misspelled type names at the begging of statements. For example, Clang now emits: -
    t.c:6:3: error: use of undeclared identifier 'integer'; did you mean 'Integer'?
    +    Able to recover and correct from misspelled type names at the beging of
    +    statements. For example, Clang now emits:
    +
    t.c:6:3: error: use of undeclared identifier 'integer'; did you mean 'Integer'?
       integer *i = 0;
       ^~~~~~~
       Integer
    -- 
    2.50.1