aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/library/lux/data/format/json.lux
diff options
context:
space:
mode:
authorEduardo Julian2021-08-09 23:02:01 -0400
committerEduardo Julian2021-08-09 23:02:01 -0400
commit464b6e8f5e6c62f58fa8c7ff61ab2ad215e98bd1 (patch)
tree1ae9d95956cee4251cd29a3e24c246c4360d567d /stdlib/source/library/lux/data/format/json.lux
parentf621a133e6e0a516c0586270fea8eaffb4829d82 (diff)
Improved single-line comment syntax (from "##" to "...").
Diffstat (limited to 'stdlib/source/library/lux/data/format/json.lux')
-rw-r--r--stdlib/source/library/lux/data/format/json.lux14
1 files changed, 7 insertions, 7 deletions
diff --git a/stdlib/source/library/lux/data/format/json.lux b/stdlib/source/library/lux/data/format/json.lux
index 3f7789e70..5dd7e9c81 100644
--- a/stdlib/source/library/lux/data/format/json.lux
+++ b/stdlib/source/library/lux/data/format/json.lux
@@ -205,9 +205,9 @@
_
#0)))
-############################################################
-############################################################
-############################################################
+............................................................
+............................................................
+............................................................
(def: (null_format _)
(-> Null Text)
@@ -233,7 +233,7 @@
(def: string_format
(-> String Text)
- (|>> (text.replace_all text.double_quote ..escaped_dq)
+ (|>> (text.replaced text.double_quote ..escaped_dq)
(text.enclosed [text.double_quote text.double_quote])))
(template [<token> <name>]
@@ -287,9 +287,9 @@
[#Object (..object_format format)])
))
-############################################################
-############################################################
-############################################################
+............................................................
+............................................................
+............................................................
(def: space_parser
(Parser Text)