Browse Source

Update check_expr.cpp

Fixed typo in error message `procedure all` -> `procedure call`
Dan Bechard 4 years ago
parent
commit
2d878de84d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/check_expr.cpp

+ 1 - 1
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;
 				mix = arg->kind == Ast_FieldValue;
 			}
 			}
 			if (mix) {
 			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;
 				fail = true;
 			}
 			}
 		}
 		}