1
0
Fork 0
mirror of https://github.com/ultrajson/ultrajson.git synced 2024-05-19 13:26:25 +02:00

Fix typos found by codespell

This commit is contained in:
Dimitri Papadopoulos 2023-10-17 18:51:08 +02:00
parent e00814cdc1
commit 80a8cd9ca6
No known key found for this signature in database
GPG Key ID: 95998121D9D25F5D

View File

@ -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;