minor comment line change - json2tsv - JSON to TSV converter
(HTM) git clone git://git.codemadness.org/json2tsv
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
(DIR) LICENSE
---
(DIR) commit 38f8dd3abd1ecbdf451ad9d98d707b09debe1c3a
(DIR) parent d9837031a5640f6d55afd1cc4f370a54f1f6bdf0
(HTM) Author: Hiltjo Posthuma <hiltjo@codemadness.org>
Date: Tue, 15 Oct 2019 22:27:49 +0200
minor comment line change
Diffstat:
M json2tsv.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
---
(DIR) diff --git a/json2tsv.c b/json2tsv.c
@@ -26,7 +26,7 @@ struct json_node {
enum JSONType type;
char *name;
size_t namesiz;
- size_t index; /* count/index for TYPE_ARRAY and TYPE_OBJECT */
+ size_t index; /* count/index for array or object type */
};
const char *JSON_ERROR_ALLOC = "cannot allocate enough memory";