commit | f87e0521284c2882dd6ae36441ae69f6a23665c5 | [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 | c5f8e6e99acdd0e1e96c7668b2cd42ebaa5be9f9 | |
parent | 16a8a3be41494279bb3cf932e641b2e0e896a3ff [diff] [blame] |
improve diagnostics in call parsing, patch suggested by Matthijs Kooijman llvm-svn: 49648
diff --git a/llvm/docs/tutorial/LangImpl6.html b/llvm/docs/tutorial/LangImpl6.html index 1f159e0..6059ad0e 100644 --- a/llvm/docs/tutorial/LangImpl6.html +++ b/llvm/docs/tutorial/LangImpl6.html
@@ -1085,7 +1085,7 @@ if (CurTok == ')') break; if (CurTok != ',') - return Error("Expected ')'"); + return Error("Expected ')' or ',' in argument list"); getNextToken(); } }