Fix type json_term/0 to match reality.

This commit is contained in:
Joseph Crowe 2013-09-02 08:54:10 +01:00
parent e50af6e109
commit b623efe2e8

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