From 71b96afc27cc408952879e24f492e542b866826c Mon Sep 17 00:00:00 2001 From: Max Bruckner Date: Sat, 8 Apr 2017 02:46:24 +0200 Subject: [PATCH] print_number: Fix comment (missing word 'zeroes') --- cJSON.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cJSON.c b/cJSON.c index d8d0f49..0297a14 100644 --- a/cJSON.c +++ b/cJSON.c @@ -417,7 +417,7 @@ static cJSON_bool print_number(const cJSON * const item, printbuffer * const out unsigned char *output_pointer = NULL; double d = item->valuedouble; int length = 0; - cJSON_bool trim_zeroes = true; /* should at the end be removed? */ + cJSON_bool trim_zeroes = true; /* should zeroes at the end be removed? */ if (output_buffer == NULL) {