diff options
| author | gingerBill <gingerBill@users.noreply.github.com> | 2020-11-22 01:22:48 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-11-22 01:22:48 +0000 |
| commit | acef96bde772a9e0a9f40f319986f066e4ce7b4a (patch) | |
| tree | d03419f88aab7ce7311748f79b4e6eef2528a511 /src/check_expr.cpp | |
| parent | e0c028329bebc8ef34480b89e223edcea3fa99fe (diff) | |
| parent | 2d878de84d99e3129d51150d24020c6366f4403d (diff) | |
Merge pull request #787 from dbechrd/dbechrd-mixed-value-error-typo-fix
Update check_expr.cpp
Diffstat (limited to 'src/check_expr.cpp')
| -rw-r--r-- | src/check_expr.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/check_expr.cpp b/src/check_expr.cpp index 24676b3ce..4b17b4f27 100644 --- a/src/check_expr.cpp +++ b/src/check_expr.cpp @@ -7659,7 +7659,7 @@ ExprKind check_call_expr(CheckerContext *c, Operand *operand, Ast *call, Ast *pr mix = arg->kind == Ast_FieldValue; } if (mix) { - error(arg, "Mixture of 'field = value' and value elements in a procedure all is not allowed"); + error(arg, "Mixture of 'field = value' and value elements in a procedure call is not allowed"); fail = true; } } |