diff options
Diffstat (limited to 'src/3rdparty/sqlite/btree_rb.c')
-rw-r--r-- | src/3rdparty/sqlite/btree_rb.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/3rdparty/sqlite/btree_rb.c b/src/3rdparty/sqlite/btree_rb.c index e6c5a1a6e..ea4b3dda7 100644 --- a/src/3rdparty/sqlite/btree_rb.c +++ b/src/3rdparty/sqlite/btree_rb.c @@ -807,7 +807,7 @@ static int memRbtreeInsert( pCur->pTree->pHead = pNode; } - /* Point the cursor at the node just inserted, as per SQLite retquirements */ + /* Point the cursor at the node just inserted, as per SQLite requirements */ pCur->pNode = pNode; /* A new node has just been inserted, so run the balancing code */ @@ -1235,7 +1235,7 @@ static int memRbtreeUpdateMeta(Rbtree* tree, int* aMeta) } /* - * Check that each table in the Rbtree meets the retquirements for a red-black + * Check that each table in the Rbtree meets the requirements for a red-black * binary tree. If an error is found, return an explanation of the problem in * memory obtained from sqliteMalloc(). Parameters aRoot and nRoot are ignored. */ |