X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=docs%2Ftutorial%2FLangImpl2.html;h=018d0be76032fcac56a4e1cfd7a84d0d13f6faa2;hb=04eeefb32a3ae7de4cde1908d30bff61e0d6b86e;hp=50619e095502382959262f5dce1ecb24ae8b2174;hpb=5ea8ef8985d5e607ff29b171d7e69359a2009a9d;p=oota-llvm.git diff --git a/docs/tutorial/LangImpl2.html b/docs/tutorial/LangImpl2.html index 50619e09550..018d0be7603 100644 --- a/docs/tutorial/LangImpl2.html +++ b/docs/tutorial/LangImpl2.html @@ -337,7 +337,7 @@ static ExprAST *ParseIdentifierExpr() { if (CurTok == ')') break; if (CurTok != ',') - return Error("Expected ')'"); + return Error("Expected ')' or ',' in argument list"); getNextToken(); } } @@ -1007,7 +1007,7 @@ static ExprAST *ParseIdentifierExpr() { if (CurTok == ')') break; if (CurTok != ',') - return Error("Expected ')'"); + return Error("Expected ')' or ',' in argument list"); getNextToken(); } }