diff options
Diffstat (limited to 'stdlib/source/lux/data/format/json.lux')
-rw-r--r-- | stdlib/source/lux/data/format/json.lux | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/stdlib/source/lux/data/format/json.lux b/stdlib/source/lux/data/format/json.lux index 01652968f..af6348fef 100644 --- a/stdlib/source/lux/data/format/json.lux +++ b/stdlib/source/lux/data/format/json.lux @@ -16,7 +16,7 @@ [product] (coll [list "list/" Fold<List> Monad<List>] [row #+ Row row "row/" Monad<Row>] - (dictionary ["dict" unordered #+ Dict]))) + (dictionary ["dict" unordered #+ Dictionary]))) [macro #+ Monad<Meta> with-gensyms] (macro ["s" syntax #+ syntax:] [code]))) @@ -36,13 +36,13 @@ (#Number Number) (#String String) (#Array (Row JSON)) - (#Object (Dict String JSON))) + (#Object (Dictionary String JSON))) (do-template [<name> <type>] [(type: #export <name> <type>)] [Array (Row JSON)] - [Object (Dict String JSON)] + [Object (Dictionary String JSON)] ) (type: #export (Reader a) @@ -302,7 +302,7 @@ (def: #export (object parser) {#.doc "Parses a JSON object, assuming that every element can be parsed the same way."} - (All [a] (-> (Reader a) (Reader (Dict Text a)))) + (All [a] (-> (Reader a) (Reader (Dictionary Text a)))) (do p.Monad<Parser> [head any] (case head |