diff options
author | shane <shane@noemail.net> | 2009-03-05 04:20:31 +0000 |
---|---|---|
committer | shane <shane@noemail.net> | 2009-03-05 04:20:31 +0000 |
commit | be21779385d54062ff3b75c2e4881c986d7798a5 (patch) | |
tree | 93f4b028f27c7fc03bf78fbbc9b0d17d0e23e8a6 /src/btree.c | |
parent | c0688ea1728706ba6812f9b21384ad413a09eca2 (diff) | |
download | sqlite-be21779385d54062ff3b75c2e4881c986d7798a5.tar.gz sqlite-be21779385d54062ff3b75c2e4881c986d7798a5.zip |
Corrected typos and misspellings. Ticket #3702. (CVS 6336)
FossilOrigin-Name: 6404afa0c515a6536fc2e878d4fb451e4dc06942
Diffstat (limited to 'src/btree.c')
-rw-r--r-- | src/btree.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/btree.c b/src/btree.c index 31598719d..9729ec96e 100644 --- a/src/btree.c +++ b/src/btree.c @@ -9,7 +9,7 @@ ** May you share freely, never taking more than you give. ** ************************************************************************* -** $Id: btree.c,v 1.570 2009/02/24 19:21:41 drh Exp $ +** $Id: btree.c,v 1.571 2009/03/05 04:20:32 shane Exp $ ** ** This file implements a external (disk-based) database using BTrees. ** See the header comment on "btreeInt.h" for additional information. @@ -2450,7 +2450,7 @@ static int incrVacuumStep(BtShared *pBt, Pgno nFin, Pgno iLastPg){ ** It performs a single unit of work towards an incremental vacuum. ** ** If the incremental vacuum is finished after this function has run, -** SQLITE_DONE is returned. If it is not finished, but no error occured, +** SQLITE_DONE is returned. If it is not finished, but no error occurred, ** SQLITE_OK is returned. Otherwise an SQLite error code. */ int sqlite3BtreeIncrVacuum(Btree *p){ @@ -2728,7 +2728,7 @@ int sqlite3BtreeRollback(Btree *p){ rc = saveAllCursors(pBt, 0, 0); #ifndef SQLITE_OMIT_SHARED_CACHE if( rc!=SQLITE_OK ){ - /* This is a horrible situation. An IO or malloc() error occured whilst + /* This is a horrible situation. An IO or malloc() error occurred whilst ** trying to save cursor positions. If this is an automatic rollback (as ** the result of a constraint, malloc() failure or IO error) then ** the cache may be internally inconsistent (not contain valid trees) so @@ -6823,7 +6823,7 @@ int sqlite3BtreeCount(BtCursor *pCur, i64 *pnEntry){ } } - /* An error has occured. Return an error code. */ + /* An error has occurred. Return an error code. */ return rc; } #endif |