aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/lux.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/lux.lux')
-rw-r--r--stdlib/source/lux.lux6
1 files changed, 3 insertions, 3 deletions
diff --git a/stdlib/source/lux.lux b/stdlib/source/lux.lux
index 7faad6c0a..9bf515bdb 100644
--- a/stdlib/source/lux.lux
+++ b/stdlib/source/lux.lux
@@ -652,19 +652,19 @@
## (type: Mode
## #Build
## #Eval
-## #REPL)
+## #Interpreter)
("lux def" Mode
(#Named ["lux" "Mode"]
(#Sum ## Build
Any
(#Sum ## Eval
Any
- ## REPL
+ ## Interpreter
Any)))
(record$ (#Cons [(tag$ ["lux" "tags"])
(tuple$ (#Cons (text$ "Build")
(#Cons (text$ "Eval")
- (#Cons (text$ "REPL")
+ (#Cons (text$ "Interpreter")
#Nil))))]
(#Cons [(tag$ ["lux" "doc"])
(text$ "A sign that shows the conditions under which the compiler is running.")]