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 d07b3e67c..2b4ec2b4e 100644
--- a/stdlib/source/library/lux/abstract/comonad/cofree.lux
+++ b/stdlib/source/library/lux/abstract/comonad/cofree.lux
@@ -12,7 +12,7 @@
(All (_ F) (-> (Functor F) (Functor (CoFree F))))
(def: (each f [head tail])
- [(f head) (# dsl each (each f) tail)]))
+ [(f head) (at dsl each (each f) tail)]))
(implementation: .public (comonad dsl)
(All (_ F) (-> (Functor F) (CoMonad (CoFree F))))
@@ -24,4 +24,4 @@
(def: (disjoint [head tail])
[[head tail]
- (# dsl each disjoint tail)]))
+ (at dsl each disjoint tail)]))