From d0ca2df480f016936de58c03d59ab45ebc259f84 Mon Sep 17 00:00:00 2001 From: "Serge A. Zaitsev" Date: Mon, 27 Jan 2014 17:11:54 +0200 Subject: [PATCH] fixed jsmntype_t definition --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index db02fbc..abccffa 100644 --- a/README.md +++ b/README.md @@ -98,10 +98,10 @@ API Token types are described by `jsmntype_t`: typedef enum { - JSMN_OBJECT, - JSMN_ARRAY, - JSMN_STRING, - JSMN_PRIMITIVE + JSMN_PRIMITIVE = 0, + JSMN_OBJECT = 1, + JSMN_ARRAY = 2, + JSMN_STRING = 3 } jsmntype_t; **Note:** Unlike JSON data types, primitive tokens are not divided into