aboutsummaryrefslogtreecommitdiff
path: root/src/check_expr.cpp
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2020-11-22 21:38:52 +0000
committergingerBill <bill@gingerbill.org>2020-11-22 21:38:52 +0000
commitdc8e895d72ea82bf71fc1944e1ce9da60e56f84a (patch)
treed2bdb73427870b2dcf63c75190203943f7d66771 /src/check_expr.cpp
parenta2461bdf6b2e5ab9db5ded4206857df74ba4d1cd (diff)
parent5cc9ddd40b9fc669c19613e0c35a95b7bc75b96f (diff)
Merge branch 'master' of https://github.com/odin-lang/Odin
Diffstat (limited to 'src/check_expr.cpp')
-rw-r--r--src/check_expr.cpp2
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;
}
}