@@ -73,7 +73,7 @@ Other changes
73
73
* #589 - Detect broken RDRAND during initialization; also, fix segfault
74
74
in the CPUID check.
75
75
* #592 - Fix integer overflows to prevert out of bounds write on large input.
76
- * Protect against division by zero in linkhash, when creaed with zero size.
76
+ * Protect against division by zero in linkhash, when created with zero size.
77
77
* #602 - Fix json_parse_uint64() internal error checking, leaving the retval
78
78
untouched in more failure cases.
79
79
* #614 - Prevent truncation when custom double formatters insert extra \0's
@@ -199,7 +199,7 @@ Behavior changes:
199
199
* Use size_t for array length and size. Platforms where sizeof(size_t) != sizeof(int) may not be backwards compatible
200
200
See commits 45c56b, 92e9a5 and others.
201
201
202
- * Check for failue when allocating memory, returning NULL and errno=ENOMEM.
202
+ * Check for failure when allocating memory, returning NULL and errno=ENOMEM.
203
203
See commit 2149a04.
204
204
205
205
* Change json_object_object_add() return type from void to int, and will return -1 on failures, instead of exiting. (Note: this is not an ABI change)
@@ -390,7 +390,7 @@ List of new functions added:
390
390
* Add an alternative iterator implementation, see json_object_iterator.h
391
391
* Make json_object_iter public to enable external use of the
392
392
json_object_object_foreachC macro.
393
- * Add a printbuf_memset() function to provide an effecient way to set and
393
+ * Add a printbuf_memset() function to provide an efficient way to set and
394
394
append things like whitespace indentation.
395
395
* Adjust json_object_is_type and json_object_get_type so they return
396
396
json_type_null for NULL objects and handle NULL passed to
@@ -476,7 +476,7 @@ List of new functions added:
476
476
0.7
477
477
===
478
478
* Add escaping of backslash to json output
479
- * Add escaping of foward slash on tokenizing and output
479
+ * Add escaping of forward slash on tokenizing and output
480
480
* Changes to internal tokenizer from using recursion to
481
481
using a depth state structure to allow incremental parsing
482
482
0 commit comments