Being clearer as to what TAPE_ERROR means.

This commit is contained in:
Daniel Lemire 2019-05-28 19:32:56 -04:00
parent 6b5231f930
commit f00be30318
1 changed files with 1 additions and 1 deletions

View File

@ -8,7 +8,7 @@ struct simdjson {
SUCCESS = 0, SUCCESS = 0,
CAPACITY, // This ParsedJson can't support a document that big CAPACITY, // This ParsedJson can't support a document that big
MEMALLOC, // Error allocating memory, most likely out of memory MEMALLOC, // Error allocating memory, most likely out of memory
TAPE_ERROR, // Something went wrong while writing to the tape TAPE_ERROR, // Something went wrong while writing to the tape (stage 2), this is a generic error
DEPTH_ERROR, // Your document exceeds the user-specified depth limitation DEPTH_ERROR, // Your document exceeds the user-specified depth limitation
STRING_ERROR, // Problem while parsing a string STRING_ERROR, // Problem while parsing a string
T_ATOM_ERROR, // Problem while parsing an atom starting with the letter 't' T_ATOM_ERROR, // Problem while parsing an atom starting with the letter 't'