aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/library/lux/target/scheme.lux
diff options
context:
space:
mode:
authorEduardo Julian2021-07-31 02:36:42 -0400
committerEduardo Julian2021-07-31 02:36:42 -0400
commitfa320d22d0d7888feddcabe43a2bc9f1e0335032 (patch)
treed003de8e7e1d5fafadde4e02e37efd111c269411 /stdlib/source/library/lux/target/scheme.lux
parent9f039e8a0a09e0278547d697efa018cd3fd68672 (diff)
Yet more renamings.
Diffstat (limited to '')
-rw-r--r--stdlib/source/library/lux/target/scheme.lux4
1 files changed, 2 insertions, 2 deletions
diff --git a/stdlib/source/library/lux/target/scheme.lux b/stdlib/source/library/lux/target/scheme.lux
index f2b855522..fc60d76f7 100644
--- a/stdlib/source/library/lux/target/scheme.lux
+++ b/stdlib/source/library/lux/target/scheme.lux
@@ -21,7 +21,7 @@
[type
abstract]]])
-(def: nest
+(def: nested
(-> Text Text)
(.let [nested_new_line (format text.new_line text.tab)]
(text.replace_all text.new_line nested_new_line)))
@@ -160,7 +160,7 @@
(#.Item head tail)
(|> tail
- (list\map (|>> :representation nest))
+ (list\map (|>> :representation ..nested))
(#.Item (:representation head))
(text.join_with nested_new_line)
(text.enclosed ["(" ")"])