markdown and erlang typespecs don't always get along

This commit is contained in:
alisdair sullivan 2012-03-02 23:01:28 -08:00
parent b836b060b1
commit 3cbabec80e

View file

@ -136,11 +136,11 @@ this implementation is interruptable and reentrant and may be used to incrementa
**json** | **erlang**
--------------------------------|--------------------------------
`number` | `integer()` | `float()`
`number` | `integer()` OR `float()`
`string` | `binary()`
`true`, `false` and `null` | `true`, `false` and `null`
`array` | `list()`
`object` | `[{}]` | `[{binary(), JSON}]`
`object` | `[{}]` OR `[{binary(), JSON}]`
**json**