From 1aea59a0fc90c7c31998af8aede98c2e80194623 Mon Sep 17 00:00:00 2001 From: gingerBill Date: Tue, 29 Jan 2019 21:53:36 +0000 Subject: [PATCH] Fix typo in parser.cpp --- src/parser.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/parser.cpp b/src/parser.cpp index 448415cfd..ee67db3be 100644 --- a/src/parser.cpp +++ b/src/parser.cpp @@ -1702,7 +1702,7 @@ Ast *parse_operand(AstFile *f, bool lhs) { } else if (e->kind == Ast_CallExpr) { if (expr->CallExpr.inlining != ProcInlining_none && expr->CallExpr.inlining != pi) { - syntax_error(expr, "You cannot apply both 'inline' and 'no_inline' to a procedure literal"); + syntax_error(expr, "You cannot apply both 'inline' and 'no_inline' to a procedure call"); } expr->CallExpr.inlining = pi; }