aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/library/lux/type/check.lux
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--stdlib/source/library/lux/type/check.lux6
1 files changed, 3 insertions, 3 deletions
diff --git a/stdlib/source/library/lux/type/check.lux b/stdlib/source/library/lux/type/check.lux
index 0201a446a..b4aedaef1 100644
--- a/stdlib/source/library/lux/type/check.lux
+++ b/stdlib/source/library/lux/type/check.lux
@@ -222,7 +222,7 @@
#.None
(..except ..unbound_type_var id))))
-(def: (peek id)
+(def: (bound id)
(-> Var (Check Type))
(function (_ context)
(case (|> context (get@ #.var_bindings) (var::get id))
@@ -404,8 +404,8 @@
(if (!n\= idE idA)
(check\in assumptions)
(do {! ..monad}
- [ebound (attempt (peek idE))
- abound (attempt (peek idA))]
+ [ebound (attempt (..bound idE))
+ abound (attempt (..bound idA))]
(case [ebound abound]
... Link the 2 variables circularly
[#.None #.None]