diff options
author | Patrick Beard <pcbeard@mac.com> | 2012-05-01 20:27:10 +0000 |
---|---|---|
committer | Patrick Beard <pcbeard@mac.com> | 2012-05-01 20:27:10 +0000 |
commit | edb45f092ec474d03e8f42ce5a416b3f43ab78c9 (patch) | |
tree | 3745d5f9d98d932dd5c0035eb579f6a8ed5f0c57 | |
parent | 05e6076f0a02dbb73d20a3928976bcd242a13279 (diff) |
Diagnostics should start with a lower-case letter.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@155936 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/clang/Basic/DiagnosticSemaKinds.td | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/clang/Basic/DiagnosticSemaKinds.td b/include/clang/Basic/DiagnosticSemaKinds.td index ee883ae3b2..7f2f2b5e7e 100644 --- a/include/clang/Basic/DiagnosticSemaKinds.td +++ b/include/clang/Basic/DiagnosticSemaKinds.td @@ -1536,7 +1536,7 @@ def err_invalid_nsnumber_type : Error< def err_undeclared_nsstring : Error< "cannot box a string value because NSString has not been declared">; def err_objc_illegal_boxed_expression_type : Error< - "Illegal type %0 used in a boxed expression">; + "illegal type %0 used in a boxed expression">; def err_undeclared_nsarray : Error< "NSArray must be available to use Objective-C array literals">; def err_undeclared_nsdictionary : Error< |