aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source')
-rw-r--r--stdlib/source/lux/compiler.lux3
1 files changed, 1 insertions, 2 deletions
diff --git a/stdlib/source/lux/compiler.lux b/stdlib/source/lux/compiler.lux
index 2f3fdbe3c..374556972 100644
--- a/stdlib/source/lux/compiler.lux
+++ b/stdlib/source/lux/compiler.lux
@@ -506,11 +506,10 @@
(def: #export modules
{#;doc "All the available modules (including the current one)."}
- (Lux (List Text))
+ (Lux (List [Text Module]))
(lambda [state]
(|> state
(get@ #;modules)
- (List/map product;left)
[state]
#;Right)))