aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/lux.lux
diff options
context:
space:
mode:
authorEduardo Julian2017-12-03 16:16:50 -0400
committerEduardo Julian2017-12-03 16:16:50 -0400
commitf2d1c591814a055b48dab3a72b3cddef0d1b0974 (patch)
treee3eb25da00612f7ece616469542ba1063d49c3a2 /stdlib/source/lux.lux
parentcee0c1010716a1bdafc5c1e90ce3fb9886288b96 (diff)
- Fixed some small issues uncovered by new-luxc.
Diffstat (limited to '')
-rw-r--r--stdlib/source/lux.lux14
1 files changed, 7 insertions, 7 deletions
diff --git a/stdlib/source/lux.lux b/stdlib/source/lux.lux
index ebac83f40..cdfe0e313 100644
--- a/stdlib/source/lux.lux
+++ b/stdlib/source/lux.lux
@@ -1031,8 +1031,8 @@
(macro:' #export (comment tokens)
(#Cons [(tag$ ["lux" "doc"])
(text$ "## Throws away any code given to it.
- ## Great for commenting-out code, while retaining syntax high-lighting and formatting in your text editor.
- (comment 1 2 3 4)")]
+ ## Great for commenting-out code, while retaining syntax high-lighting and formatting in your text editor.
+ (comment 1 2 3 4)")]
#Nil)
(return #Nil))
@@ -1309,9 +1309,9 @@
(macro:' #export (-> tokens)
(#Cons [(tag$ ["lux" "doc"])
(text$ "## Function types:
- (-> Int Int Int)
+ (-> Int Int Int)
- ## This is the type of a function that takes 2 Ints and returns an Int.")]
+ ## This is the type of a function that takes 2 Ints and returns an Int.")]
#Nil)
("lux case" (list/reverse tokens)
{(#Cons output inputs)
@@ -1327,7 +1327,7 @@
(macro:' #export (list xs)
(#Cons [(tag$ ["lux" "doc"])
(text$ "## List-construction macro.
- (list 1 2 3)")]
+ (list 1 2 3)")]
#Nil)
(return (#Cons (list/fold (function'' [head tail]
(form$ (#Cons (tag$ ["lux" "Cons"])
@@ -1340,8 +1340,8 @@
(macro:' #export (list& xs)
(#Cons [(tag$ ["lux" "doc"])
(text$ "## List-construction macro, with the last element being a tail-list.
- ## In other words, this macro prepends elements to another list.
- (list& 1 2 3 (list 4 5 6))")]
+ ## In other words, this macro prepends elements to another list.
+ (list& 1 2 3 (list 4 5 6))")]
#Nil)
("lux case" (list/reverse xs)
{(#Cons last init)