mirror of
https://github.com/odin-lang/Odin.git
synced 2025-12-29 17:34:34 +00:00
Update check_expr.cpp
Fixed typo in error message `procedure all` -> `procedure call`
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user