aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/library/lux/abstract/apply.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/library/lux/abstract/apply.lux')
-rw-r--r--stdlib/source/library/lux/abstract/apply.lux8
1 files changed, 4 insertions, 4 deletions
diff --git a/stdlib/source/library/lux/abstract/apply.lux b/stdlib/source/library/lux/abstract/apply.lux
index c47951e89..c6f6a18a6 100644
--- a/stdlib/source/library/lux/abstract/apply.lux
+++ b/stdlib/source/library/lux/abstract/apply.lux
@@ -10,15 +10,15 @@
(Interface
(: (Functor f)
&functor)
- (: (All [a b]
+ (: (All (_ a b)
(-> (f a) (f (-> a b)) (f b)))
on)))
(implementation: .public (composite f_monad f_apply g_apply)
- (All [F G]
+ (All (_ F G)
(-> (Monad F) (Apply F) (Apply G)
- ... TODO: Replace (All [a] (F (G a))) with (functor.Then F G)
- (Apply (All [a] (F (G a))))))
+ ... TODO: Replace (All (_ a) (F (G a))) with (functor.Then F G)
+ (Apply (All (_ a) (F (G a))))))
(def: &functor
(functor.composite (value@ #&functor f_apply)