From c61573f1af9df53515cbdc5dae39a9b2e8a7740f Mon Sep 17 00:00:00 2001 From: Alanscut Date: Wed, 11 Sep 2019 09:51:30 +0800 Subject: [PATCH] format adjustment --- cJSON.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cJSON.h b/cJSON.h index a2ae97f..1e8567a 100644 --- a/cJSON.h +++ b/cJSON.h @@ -208,8 +208,8 @@ CJSON_PUBLIC(cJSON *) cJSON_CreateStringReference(const char *string); CJSON_PUBLIC(cJSON *) cJSON_CreateObjectReference(const cJSON *child); CJSON_PUBLIC(cJSON *) cJSON_CreateArrayReference(const cJSON *child); -/* These utilities create an Array of count items. * -*The parameter count cannot be greater than the number of elements in the number array,otherwise array access will be out of bounds.*/ +/* These utilities create an Array of count items. + * The parameter count cannot be greater than the number of elements in the number array, otherwise array access will be out of bounds.*/ CJSON_PUBLIC(cJSON *) cJSON_CreateIntArray(const int *numbers, int count); CJSON_PUBLIC(cJSON *) cJSON_CreateFloatArray(const float *numbers, int count); CJSON_PUBLIC(cJSON *) cJSON_CreateDoubleArray(const double *numbers, int count); -- GitLab