aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/test/lux/type/poly/functor.lux
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--stdlib/source/test/lux/type/poly/functor.lux10
1 files changed, 5 insertions, 5 deletions
diff --git a/stdlib/source/test/lux/type/poly/functor.lux b/stdlib/source/test/lux/type/poly/functor.lux
index da5b00391..d717d1548 100644
--- a/stdlib/source/test/lux/type/poly/functor.lux
+++ b/stdlib/source/test/lux/type/poly/functor.lux
@@ -1,19 +1,19 @@
(.module:
[library
- [lux #*
+ [lux "*"
[abstract
- [monad (#+ do)]
+ [monad {"+" [do]}]
[functor
[\\poly
["." /]]]]
- ["r" math/random (#+ Random)]
- ["_" test (#+ Test)]
+ ["r" math/random {"+" [Random]}]
+ ["_" test {"+" [Test]}]
[control
["." state]]
[data
["." identity]]
[type
- [poly (#+ derived:)]]]])
+ [poly {"+" [derived:]}]]]])
(derived: maybe_functor (/.functor .Maybe))
(derived: list_functor (/.functor .List))