aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNico Weber <nicolasweber@gmx.de>2012-11-24 03:20:20 +0000
committerNico Weber <nicolasweber@gmx.de>2012-11-24 03:20:20 +0000
commitf9cb0bedb5c61fa270fd696113d4387456c70ebb (patch)
tree559f67227ce544bd4184a4bd079b15b6a2f0c313
parent63b6ebe4e732f20fa24ea0666ed438dd5004cc20 (diff)
Make err_module_expected_semi consistent with all the other expected_semi diags.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@168535 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/clang/Basic/DiagnosticParseKinds.td2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/clang/Basic/DiagnosticParseKinds.td b/include/clang/Basic/DiagnosticParseKinds.td
index e1163cd46d..f218bb7dce 100644
--- a/include/clang/Basic/DiagnosticParseKinds.td
+++ b/include/clang/Basic/DiagnosticParseKinds.td
@@ -768,7 +768,7 @@ let CategoryName = "Modules Issue" in {
def err_module_expected_ident : Error<
"expected a module name after module import">;
def err_module_expected_semi : Error<
- "expected a semicolon name after module name">;
+ "expected ';' after module name">;
}
} // end of Parser diagnostics