aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/library/lux/abstract/comonad/cofree.lux
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--stdlib/source/library/lux/abstract/comonad/cofree.lux4
1 files changed, 2 insertions, 2 deletions
diff --git a/stdlib/source/library/lux/abstract/comonad/cofree.lux b/stdlib/source/library/lux/abstract/comonad/cofree.lux
index e7d9cea7f..f9bfc2dd1 100644
--- a/stdlib/source/library/lux/abstract/comonad/cofree.lux
+++ b/stdlib/source/library/lux/abstract/comonad/cofree.lux
@@ -9,13 +9,13 @@
[a (F (CoFree F a))])
(implementation: .public (functor dsl)
- (All [F] (-> (Functor F) (Functor (CoFree F))))
+ (All (_ F) (-> (Functor F) (Functor (CoFree F))))
(def: (each f [head tail])
[(f head) (\ dsl each (each f) tail)]))
(implementation: .public (comonad dsl)
- (All [F] (-> (Functor F) (CoMonad (CoFree F))))
+ (All (_ F) (-> (Functor F) (CoMonad (CoFree F))))
(def: &functor (..functor dsl))