summaryrefslogtreecommitdiff
path: root/compiler/Main.ml
diff options
context:
space:
mode:
authorAymeric Fromherz2024-05-24 13:28:12 +0200
committerAymeric Fromherz2024-05-24 13:28:35 +0200
commitb294639a5cbd2a51fc5bb5e55e0c386ee568ca8c (patch)
tree9676957a458dde6e2141d11b060e9fa93f64b710 /compiler/Main.ml
parent50dbeaeb018ab2cb44df3f557f1958eb15351f31 (diff)
Rename meta into span
Diffstat (limited to 'compiler/Main.ml')
-rw-r--r--compiler/Main.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/Main.ml b/compiler/Main.ml
index 6161f2f2..29322049 100644
--- a/compiler/Main.ml
+++ b/compiler/Main.ml
@@ -282,7 +282,7 @@ let () =
if !Errors.error_list <> [] then (
List.iter
- (fun (meta, msg) -> log#serror (Errors.format_error_message meta msg))
+ (fun (span, msg) -> log#serror (Errors.format_error_message span msg))
(* Reverse the list of error messages so that we print them from the
earliest to the latest. *)
(List.rev !Errors.error_list);