소스 검색

print_number: Fix comment (missing word 'zeroes')

Max Bruckner 8 년 전
부모
커밋
71b96afc27
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      cJSON.c

+ 1 - 1
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)
     {