diff options
author | Richard Trieu <rtrieu@google.com> | 2012-11-02 21:33:17 +0000 |
---|---|---|
committer | Richard Trieu <rtrieu@google.com> | 2012-11-02 21:33:17 +0000 |
commit | d730705d448c184e73c14be22fccd05563399748 (patch) | |
tree | 7dff681950e68eb8939fbe9baed4e1207d2ba57d | |
parent | 765029b34fb7dbc4faa8ae008d5191e9adc5fdd5 (diff) |
Fix grammar of diagnostic message.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@167319 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/clang/Basic/DiagnosticParseKinds.td | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/clang/Basic/DiagnosticParseKinds.td b/include/clang/Basic/DiagnosticParseKinds.td index 99932bc4e7..59e979d650 100644 --- a/include/clang/Basic/DiagnosticParseKinds.td +++ b/include/clang/Basic/DiagnosticParseKinds.td @@ -352,7 +352,7 @@ def warn_cxx98_compat_static_assert : Warning< "static_assert declarations are incompatible with C++98">, InGroup<CXX98Compat>, DefaultIgnore; def err_paren_after_colon_colon : Error< - "unexpected parentheses after '::'">; + "unexpected parenthesis after '::'">; /// Objective-C parser diagnostics def err_expected_minus_or_plus : Error< |