aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/library/lux/abstract/functor.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/library/lux/abstract/functor.lux')
-rw-r--r--stdlib/source/library/lux/abstract/functor.lux2
1 files changed, 1 insertions, 1 deletions
diff --git a/stdlib/source/library/lux/abstract/functor.lux b/stdlib/source/library/lux/abstract/functor.lux
index d06f82ed7..6f7053018 100644
--- a/stdlib/source/library/lux/abstract/functor.lux
+++ b/stdlib/source/library/lux/abstract/functor.lux
@@ -38,7 +38,7 @@
(type: .public (Then f g)
(All [a] (f (g a))))
-(def: .public (compose (^open "f\.") (^open "g\."))
+(def: .public (composite (^open "f\.") (^open "g\."))
(All [F G] (-> (Functor F) (Functor G) (Functor (..Then F G))))
(implementation
(def: (map f fga)