1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-09 14:21:03 +03:00

Improvements to comments. No changes to code.

FossilOrigin-Name: ac74d7877685006e43684edd6a2d22be8c9857f9f9eb52fc5b3c182d5e2fdb8d
This commit is contained in:
drh
2023-10-05 22:52:43 +00:00
parent dac2707152
commit f7af8f3270
3 changed files with 15 additions and 15 deletions

View File

@@ -1515,10 +1515,10 @@ static const struct NanInfName {
**
** 0 End of input
** -1 Syntax error
** -2 '}' seen
** -3 ']' seen
** -4 ',' seen
** -5 ':' seen
** -2 '}' seen \
** -3 ']' seen \___ For these returns, pParse->iErr is set to
** -4 ',' seen / the index in zJson[] of the seen character
** -5 ':' seen /
*/
static int jsonParseValueFromText(JsonParse *pParse, u32 i){
char c;
@@ -2656,10 +2656,10 @@ static int jsonIs4HexB(const char *z, int *pOp){
**
** 0 End of input
** -1 Syntax error
** -2 '}' seen
** -3 ']' seen
** -4 ',' seen
** -5 ':' seen
** -2 '}' seen \
** -3 ']' seen \___ For these returns, pParse->iErr is set to
** -4 ',' seen / the index in zJson[] of the seen character
** -5 ':' seen /
*/
static int jsonTranslateTextValueToBlob(JsonParse *pParse, u32 i){
char c;