Selaa lähdekoodia

Merge pull request #340 from ldm0/master

Typo Fix
Max Bruckner 6 vuotta sitten
vanhempi
commit
0b5a7abf48
1 muutettua tiedostoa jossa 2 lisäystä ja 2 poistoa
  1. 2 2
      cJSON.c

+ 2 - 2
cJSON.c

@@ -514,7 +514,7 @@ static cJSON_bool print_number(const cJSON * const item, printbuffer * const out
         }
     }
 
-    /* sprintf failed or buffer overrun occured */
+    /* sprintf failed or buffer overrun occurred */
     if ((length < 0) || (length > (int)(sizeof(number_buffer) - 1)))
     {
         return false;
@@ -1565,7 +1565,7 @@ static cJSON_bool parse_object(cJSON * const item, parse_buffer * const input_bu
         buffer_skip_whitespace(input_buffer);
         if (!parse_string(current_item, input_buffer))
         {
-            goto fail; /* faile to parse name */
+            goto fail; /* failed to parse name */
         }
         buffer_skip_whitespace(input_buffer);