From: Richard Smith Date: Mon, 28 Nov 2011 23:16:15 +0000 (+0000) Subject: Release notes: fix up formatting of diagnostic example. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ad5459a67c7c04960df52d21af08b2e99af537b4;p=clang Release notes: fix up formatting of diagnostic example. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@145311 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/docs/ReleaseNotes.html b/docs/ReleaseNotes.html index a8ca90d5d1..091605d648 100644 --- a/docs/ReleaseNotes.html +++ b/docs/ReleaseNotes.html @@ -109,14 +109,13 @@ A few improvements since the 2.9 release that have a particularly high impact: 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'? +
    t.c:6:3: error: use of undeclared identifier 'integer'; did you mean 'Integer'?
       integer *i = 0;
    -  ^~~~~~~
    +  ^~~~~~~
       Integer
    -t.c:1:13: note: 'Integer' declared here
    +t.c:1:13: note: 'Integer' declared here
     typedef int Integer;
    -            ^
    +            ^
  • Expanded typo correction to (among other improvements) look across namespaces and suggest namespace qualifiers in addition to misspellings of the