commit | 4026a3404ef92e0da2113244a7106c83d2250626 | [log] [tgz] |
---|---|---|
author | Chris Lattner <sabre@nondot.org> | Mon Apr 14 16:44:41 2008 +0000 |
committer | Chris Lattner <sabre@nondot.org> | Mon Apr 14 16:44:41 2008 +0000 |
tree | c4eeb54d5c3afb45e7c675f9cf6b1b9cc0e91224 | |
parent | 9f7fa0c06170423b494a3d19d425efb2c47b5712 [diff] [blame] |
improve diagnostics in call parsing, patch suggested by Matthijs Kooijman git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@49648 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/docs/tutorial/LangImpl6.html b/docs/tutorial/LangImpl6.html index 1f159e0..6059ad0 100644 --- a/docs/tutorial/LangImpl6.html +++ b/docs/tutorial/LangImpl6.html
@@ -1085,7 +1085,7 @@ if (CurTok == ')') break; if (CurTok != ',') - return Error("Expected ')'"); + return Error("Expected ')' or ',' in argument list"); getNextToken(); } }