aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/library/lux/control/parser/json.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/library/lux/control/parser/json.lux')
-rw-r--r--stdlib/source/library/lux/control/parser/json.lux8
1 files changed, 4 insertions, 4 deletions
diff --git a/stdlib/source/library/lux/control/parser/json.lux b/stdlib/source/library/lux/control/parser/json.lux
index f17c4c763..c146ec5d3 100644
--- a/stdlib/source/library/lux/control/parser/json.lux
+++ b/stdlib/source/library/lux/control/parser/json.lux
@@ -27,7 +27,7 @@
(exception: .public (unconsumed_input [input (List JSON)])
(exception.report
- ["Input" (exception.listing /.format input)]))
+ "Input" (exception.listing /.format input)))
(exception: .public empty_input)
@@ -57,7 +57,7 @@
(exception: .public (unexpected_value [value JSON])
(exception.report
- ["Value" (/.format value)]))
+ "Value" (/.format value)))
(template [<name> <type> <tag>]
[(def: .public <name>
@@ -80,8 +80,8 @@
(exception: .public [a] (value_mismatch [reference JSON
sample JSON])
(exception.report
- ["Reference" (/.format reference)]
- ["Sample" (/.format sample)]))
+ "Reference" (/.format reference)
+ "Sample" (/.format sample)))
(template [<test> <check> <type> <equivalence> <tag>]
[(def: .public (<test> test)