aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/library/lux/control/exception.lux
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--stdlib/source/library/lux/control/exception.lux6
1 files changed, 3 insertions, 3 deletions
diff --git a/stdlib/source/library/lux/control/exception.lux b/stdlib/source/library/lux/control/exception.lux
index 474ca07d3..fabba5ad5 100644
--- a/stdlib/source/library/lux/control/exception.lux
+++ b/stdlib/source/library/lux/control/exception.lux
@@ -147,16 +147,16 @@
..report))
(.def separator
- (let [gap (all "lux text concat" text.new_line text.new_line)
+ (let [gap (all .text_composite# text.new_line text.new_line)
horizontal_line (|> "-" (list.repeated 64) text.together)]
- (all "lux text concat"
+ (all .text_composite#
gap
horizontal_line
gap)))
(.def (decorated prelude error)
(-> Text Text Text)
- (all "lux text concat"
+ (all .text_composite#
prelude
..separator
error))