mirror of
https://github.com/ultrajson/ultrajson.git
synced 2024-11-22 15:31:59 +01:00
Fix typos found by codespell (#610)
This commit is contained in:
parent
e00814cdc1
commit
b7a4dfda0a
@ -325,7 +325,7 @@ class DoubleToStringConverter {
|
||||
// except for the following cases:
|
||||
// - the input value is special and no infinity_symbol or nan_symbol has
|
||||
// been provided to the constructor,
|
||||
// - precision < kMinPericisionDigits
|
||||
// - precision < kMinPrecisionDigits
|
||||
// - precision > kMaxPrecisionDigits
|
||||
//
|
||||
// The last condition implies that the result never contains more than
|
||||
|
@ -201,12 +201,12 @@ typedef struct __JSONObjectEncoder
|
||||
|
||||
/*
|
||||
Retrieve next object in an iteration. Should return 0 to indicate iteration has reached end or 1 if there are more items.
|
||||
Implementor is responsible for keeping state of the iteration. Use ti->prv fields for this
|
||||
Implementer is responsible for keeping state of the iteration. Use ti->prv fields for this
|
||||
*/
|
||||
JSPFN_ITERNEXT iterNext;
|
||||
|
||||
/*
|
||||
Ends the iteration of an iteratable object.
|
||||
Ends the iteration of an iterable object.
|
||||
Any iteration state stored in ti->prv can be freed here
|
||||
*/
|
||||
JSPFN_ITEREND iterEnd;
|
||||
@ -284,7 +284,7 @@ typedef struct __JSONObjectEncoder
|
||||
void *d2s;
|
||||
|
||||
/*
|
||||
Set to an error message if error occured */
|
||||
Set to an error message if error occurred */
|
||||
const char *errorMsg;
|
||||
JSOBJ errorObj;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user