diff options
Diffstat (limited to 'stdlib/source/lux/data/format/json.lux')
| -rw-r--r-- | stdlib/source/lux/data/format/json.lux | 12 | 
1 files changed, 6 insertions, 6 deletions
diff --git a/stdlib/source/lux/data/format/json.lux b/stdlib/source/lux/data/format/json.lux index 2dbe32d91..7fae80334 100644 --- a/stdlib/source/lux/data/format/json.lux +++ b/stdlib/source/lux/data/format/json.lux @@ -68,8 +68,8 @@          wrapper (function (_ x) (` (..json (~ x))))]      (case token        (^template [<ast-tag> <ctor> <json-tag>] -        [_ (<ast-tag> value)] -        (wrap (list (` (: JSON (<json-tag> (~ (<ctor> value)))))))) +        [[_ (<ast-tag> value)] +         (wrap (list (` (: JSON (<json-tag> (~ (<ctor> value)))))))])        ([#.Bit  code.bit  #..Boolean]         [#.Frac code.frac #..Number]         [#.Text code.text #..String]) @@ -163,8 +163,8 @@        #1        (^template [<tag> <struct>] -        [(<tag> x') (<tag> y')] -        (:: <struct> = x' y')) +        [[(<tag> x') (<tag> y')] +         (:: <struct> = x' y')])        ([#Boolean bit.equivalence]         [#Number  f.equivalence]         [#String  text.equivalence]) @@ -237,8 +237,8 @@    (-> JSON Text)    (case json      (^template [<tag> <format>] -      (<tag> value) -      (<format> value)) +      [(<tag> value) +       (<format> value)])      ([#Null    format-null]       [#Boolean format-boolean]       [#Number  format-number]  | 
