aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/library/lux/tool/compiler
diff options
context:
space:
mode:
authorEduardo Julian2022-06-15 00:23:15 -0400
committerEduardo Julian2022-06-15 00:23:15 -0400
commit64d12f85e861cb8ab4d59c31f0f8d2b71b865852 (patch)
tree316d17cd2aaf6e0aa9950a2678a9b10987603d5e /stdlib/source/library/lux/tool/compiler
parentd5d5fcc3a85ef10081772355fc20932b387a35ab (diff)
Re-named "prelude_module" to "prelude".
Diffstat (limited to 'stdlib/source/library/lux/tool/compiler')
-rw-r--r--stdlib/source/library/lux/tool/compiler/default/platform.lux2
-rw-r--r--stdlib/source/library/lux/tool/compiler/language/lux/syntax.lux4
2 files changed, 3 insertions, 3 deletions
diff --git a/stdlib/source/library/lux/tool/compiler/default/platform.lux b/stdlib/source/library/lux/tool/compiler/default/platform.lux
index 4d259bf18..1bea3c4e9 100644
--- a/stdlib/source/library/lux/tool/compiler/default/platform.lux
+++ b/stdlib/source/library/lux/tool/compiler/default/platform.lux
@@ -637,7 +637,7 @@
(let [[all_dependencies duplicates _] (is [(Set descriptor.Module) (Set descriptor.Module) Bit]
(list#mix (function (_ new [all duplicates seen_prelude?])
(if (set.member? all new)
- (if (text#= .prelude_module new)
+ (if (text#= .prelude new)
(if seen_prelude?
[all (set.has new duplicates) seen_prelude?]
[all duplicates true])
diff --git a/stdlib/source/library/lux/tool/compiler/language/lux/syntax.lux b/stdlib/source/library/lux/tool/compiler/language/lux/syntax.lux
index 908e3898b..3dcd579c9 100644
--- a/stdlib/source/library/lux/tool/compiler/language/lux/syntax.lux
+++ b/stdlib/source/library/lux/tool/compiler/language/lux/syntax.lux
@@ -26,7 +26,7 @@
... location, which is helpful for documentation and debugging.
(.using
[library
- [lux (.except)
+ [lux (.except prelude)
["@" target]
[abstract
[monad (.only do)]]
@@ -123,7 +123,7 @@
(dictionary.empty text.hash))
(def: .public prelude
- .prelude_module)
+ .prelude)
(def: .public text_delimiter text.double_quote)