minor comment line change - json2tsv - JSON to TSV converter | |
git clone git://git.codemadness.org/json2tsv | |
Log | |
Files | |
Refs | |
README | |
LICENSE | |
--- | |
commit 38f8dd3abd1ecbdf451ad9d98d707b09debe1c3a | |
parent d9837031a5640f6d55afd1cc4f370a54f1f6bdf0 | |
Author: Hiltjo Posthuma <[email protected]> | |
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(-) | |
--- | |
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"; |