aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/library/lux/data/text/escape.lux
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--stdlib/source/library/lux/data/text/escape.lux14
1 files changed, 7 insertions, 7 deletions
diff --git a/stdlib/source/library/lux/data/text/escape.lux b/stdlib/source/library/lux/data/text/escape.lux
index ec2adf129..3209c406d 100644
--- a/stdlib/source/library/lux/data/text/escape.lux
+++ b/stdlib/source/library/lux/data/text/escape.lux
@@ -143,22 +143,22 @@
(exception: .public (dangling_escape [text Text])
(exception.report
- ["In" (%.text text)]
- ["At" (%.nat (-- (//.size text)))]))
+ "In" (%.text text)
+ "At" (%.nat (-- (//.size text)))))
(exception: .public (invalid_escape [text Text
offset Nat
sigil Char])
(exception.report
- ["In" (%.text text)]
- ["At" (%.nat offset)]
- ["Name" (%.text (//.of_char sigil))]))
+ "In" (%.text text)
+ "At" (%.nat offset)
+ "Name" (%.text (//.of_char sigil))))
(exception: .public (invalid_unicode_escape [text Text
offset Nat])
(exception.report
- ["In" (%.text text)]
- ["At" (%.nat offset)]))
+ "In" (%.text text)
+ "At" (%.nat offset)))
(def: code_size
4)