aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/library/lux/debug.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/library/lux/debug.lux')
-rw-r--r--stdlib/source/library/lux/debug.lux6
1 files changed, 3 insertions, 3 deletions
diff --git a/stdlib/source/library/lux/debug.lux b/stdlib/source/library/lux/debug.lux
index ed076d3ae..ee83680a0 100644
--- a/stdlib/source/library/lux/debug.lux
+++ b/stdlib/source/library/lux/debug.lux
@@ -126,7 +126,7 @@
(let [member ("lua array read" idx tuple)]
(if ("lua object nil?" member)
{.#End}
- {.#Item member (recur (++ idx))})))))]
+ {.#Item member (again (++ idx))})))))]
(as_is))
(def: (tuple_inspection inspection)
@@ -458,7 +458,7 @@
[lefts #1 (rightR right)]
_
- (recur (++ lefts) {.#Item rightR extraR+} right)))
+ (again (++ lefts) {.#Item rightR extraR+} right)))
_
(undefined)))]
@@ -480,7 +480,7 @@
{.#Item headR tailR}
(let [[leftV rightV] (:as [Any Any] tupleV)]
- (%.format (headR leftV) " " (recur tailR rightV)))))]
+ (%.format (headR leftV) " " (again tailR rightV)))))]
(%.format "[" tuple_body "]"))))))
(def: representation_parser