aboutsummaryrefslogtreecommitdiff
path: root/new-luxc/source/luxc/base.lux
diff options
context:
space:
mode:
Diffstat (limited to 'new-luxc/source/luxc/base.lux')
-rw-r--r--new-luxc/source/luxc/base.lux6
1 files changed, 3 insertions, 3 deletions
diff --git a/new-luxc/source/luxc/base.lux b/new-luxc/source/luxc/base.lux
index c0108da7e..fe57cc1dd 100644
--- a/new-luxc/source/luxc/base.lux
+++ b/new-luxc/source/luxc/base.lux
@@ -57,7 +57,7 @@
(#R;Error error)
(#R;Error error))))
-(def: #export (within-type-env action)
+(def: #export (with-type-env action)
(All [a] (-> (tc;Check a) (Lux a)))
(function [compiler]
(case (action (get@ #;type-context compiler))
@@ -72,8 +72,8 @@
(-> Type (Lux Unit))
(do macro;Monad<Lux>
[expectedT macro;expected-type]
- (within-type-env
- (tc;check expectedT actualT))))
+ (with-type-env
+ (tc;check expectedT actualT))))
(def: #export (pl-get key table)
(All [a] (-> Text (List [Text a]) (Maybe a)))