aboutsummaryrefslogtreecommitdiff
path: root/src/rowset.c
diff options
context:
space:
mode:
authorpdr <pdr@noemail.net>2020-03-09 03:21:33 +0000
committerpdr <pdr@noemail.net>2020-03-09 03:21:33 +0000
commit45dc9ca46bd0604e0199a4956f17eef82ec4e3cd (patch)
treebb8d9647cbea16fd5287c8c32cd75810dc8aa9b2 /src/rowset.c
parented5e66881e0b29668a160195c8ddd98b9df56e23 (diff)
downloadsqlite-45dc9ca46bd0604e0199a4956f17eef82ec4e3cd.tar.gz
sqlite-45dc9ca46bd0604e0199a4956f17eef82ec4e3cd.zip
Fix typos in RowSet.
FossilOrigin-Name: 86465c08f4d629a296332a7985937326ac43ea2822c5651bf03862cd79d370fc
Diffstat (limited to 'src/rowset.c')
-rw-r--r--src/rowset.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rowset.c b/src/rowset.c
index 703cf499b..0562320ab 100644
--- a/src/rowset.c
+++ b/src/rowset.c
@@ -177,7 +177,7 @@ void sqlite3RowSetDelete(void *pArg){
/*
** Allocate a new RowSetEntry object that is associated with the
** given RowSet. Return a pointer to the new and completely uninitialized
-** objected.
+** object.
**
** In an OOM situation, the RowSet.db->mallocFailed flag is set and this
** routine returns NULL.
@@ -453,7 +453,7 @@ int sqlite3RowSetTest(RowSet *pRowSet, int iBatch, sqlite3_int64 iRowid){
if( p ){
struct RowSetEntry **ppPrevTree = &pRowSet->pForest;
if( (pRowSet->rsFlags & ROWSET_SORTED)==0 ){ /*OPTIMIZATION-IF-FALSE*/
- /* Only sort the current set of entiries if they need it */
+ /* Only sort the current set of entries if they need it */
p = rowSetEntrySort(p);
}
for(pTree = pRowSet->pForest; pTree; pTree=pTree->pRight){