Merge pull request #39 from JosephCrowe/develop

Fix type json_term/0 to match reality.
This commit is contained in:
alisdair sullivan 2013-09-02 17:48:20 -07:00
commit a39baa4efc

View file

@ -42,8 +42,9 @@
-endif.
-type json_term() :: list({binary(), json_term()})
| list(json_term())
-type json_term()
:: [{binary() | atom(), json_term()}]
| [json_term()]
| true
| false
| null