diff options
author | Eduardo Julian | 2017-10-16 18:13:12 -0400 |
---|---|---|
committer | Eduardo Julian | 2017-10-16 18:13:12 -0400 |
commit | 9d0eaa97963d4e37a6afbe30f62c5bb9991ef49e (patch) | |
tree | 293a89b9f8f4ce78caf5ac9d1d57ae45a1ddcc5d /stdlib/source/lux/data/format/json.lux | |
parent | c3470e9d3eff01a5bbd180e449ac04f659c061f7 (diff) |
- Moved Array type to lux.lux.
- Re-named some array functions.
- Minor refactorings.
Diffstat (limited to '')
-rw-r--r-- | stdlib/source/lux/data/format/json.lux | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stdlib/source/lux/data/format/json.lux b/stdlib/source/lux/data/format/json.lux index 1f787b8e4..867cec189 100644 --- a/stdlib/source/lux/data/format/json.lux +++ b/stdlib/source/lux/data/format/json.lux @@ -1,7 +1,7 @@ (;module: {#;doc "Functionality for reading and writing values in the JSON format. For more information, please see: http://www.json.org/"} - lux + [lux #- Array] (lux (control [monad #+ do Monad] [eq #+ Eq] codec |