about summary refs log tree commit diff
path: root/src/error/Error.ml
diff options
context:
space:
mode:
Diffstat (limited to 'src/error/Error.ml')
-rw-r--r--src/error/Error.ml4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/error/Error.ml b/src/error/Error.ml
index 9a5ea9e..7a6a681 100644
--- a/src/error/Error.ml
+++ b/src/error/Error.ml
@@ -42,8 +42,8 @@ let illegal_character ~loc char = fatalf ~loc IllegalCharacter
     "illegal character '%s'" (Char.escaped char)
 let syntax_error ~loc = fatalf ~loc SyntaxError
     "syntax error"
-let unbound_variable id = fatalf UnboundVariable
-    "unbound variable '%a'" Ident.pp id
+let unbound_variable name = fatalf UnboundVariable
+    "unbound variable '%a'" Name.pp name
 let type_mismatch ?loc fmt_expected expected fmt_found found = fatalf ?loc TypeMismatch
     "@[<v>type mismatch:@,expected: @[%a@]@,   found: @[%a@]@]"
     fmt_expected expected fmt_found found