aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/documentation/lux/control/parser/json.lux
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--stdlib/source/documentation/lux/control/parser/json.lux32
1 files changed, 16 insertions, 16 deletions
diff --git a/stdlib/source/documentation/lux/control/parser/json.lux b/stdlib/source/documentation/lux/control/parser/json.lux
index a9471ef9f..714fd3326 100644
--- a/stdlib/source/documentation/lux/control/parser/json.lux
+++ b/stdlib/source/documentation/lux/control/parser/json.lux
@@ -1,14 +1,14 @@
(.using
- [library
- [lux "*"
- ["$" documentation {"+" documentation:}]
- [data
- [text {"+" \n}
- ["%" format {"+" format}]]]
- [macro
- ["[0]" template]]]]
- [\\library
- ["[0]" /]])
+ [library
+ [lux "*"
+ ["$" documentation {"+" documentation:}]
+ [data
+ [text {"+" \n}
+ ["%" format {"+" format}]]]
+ [macro
+ ["[0]" template]]]]
+ [\\library
+ ["[0]" /]])
(documentation: (/.Parser it)
"A JSON parser.")
@@ -37,9 +37,9 @@
(`` (documentation: <check>
(format "Ensures a JSON value is a " (~~ (template.text [<read>])) ".")))]
- [/.boolean? /.boolean! ..boolean]
- [/.number? /.number! ..number]
- [/.string? /.string! ..string]
+ [/.boolean? /.this_boolean ..boolean]
+ [/.number? /.this_number ..number]
+ [/.string? /.this_string ..string]
)
(documentation: /.nullable
@@ -76,9 +76,9 @@
..number
..string
- ..boolean? ..boolean!
- ..number? ..number!
- ..string? ..string!
+ ..boolean? ..this_boolean
+ ..number? ..this_number
+ ..string? ..this_string
..nullable
..array