From 3cbabec80ef22accb38b28c2f6bfbe76da55b801 Mon Sep 17 00:00:00 2001 From: alisdair sullivan Date: Fri, 2 Mar 2012 23:01:28 -0800 Subject: [PATCH] markdown and erlang typespecs don't always get along --- README.markdown | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.markdown b/README.markdown index 2b3433d..6e00fc9 100644 --- a/README.markdown +++ b/README.markdown @@ -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**