aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/lux/meta.lux
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--stdlib/source/lux/meta.lux14
1 files changed, 7 insertions, 7 deletions
diff --git a/stdlib/source/lux/meta.lux b/stdlib/source/lux/meta.lux
index 6991ec840..e94aa1578 100644
--- a/stdlib/source/lux/meta.lux
+++ b/stdlib/source/lux/meta.lux
@@ -508,13 +508,13 @@
{#.doc "The entire list of definitions in a module (including the non-exported/private ones)."}
(-> Text (Meta (List [Text Definition])))
(:: ..monad map
- (list.search-all (function (_ [name global])
- (case global
- (#.Left de-aliased)
- #.None
-
- (#.Right definition)
- (#.Some [name definition]))))
+ (list.all (function (_ [name global])
+ (case global
+ (#.Left de-aliased)
+ #.None
+
+ (#.Right definition)
+ (#.Some [name definition]))))
(..globals module)))
(def: #export (exports module-name)