diff options
Diffstat (limited to 'src/pager.c')
-rw-r--r-- | src/pager.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/pager.c b/src/pager.c index bdb5741e6..1cf1d2bc3 100644 --- a/src/pager.c +++ b/src/pager.c @@ -18,7 +18,7 @@ ** file simultaneously, or one process from reading the database while ** another is writing. ** -** @(#) $Id: pager.c,v 1.39 2002/02/14 12:50:35 drh Exp $ +** @(#) $Id: pager.c,v 1.40 2002/02/19 13:39:22 drh Exp $ */ #include "sqliteInt.h" #include "pager.h" @@ -653,7 +653,7 @@ int sqlitepager_ref(void *pData){ ** ** Writing all free dirty pages to the database after the sync is a ** non-obvious optimization. fsync() is an expensive operation so we -** want to minimize the number it is called. After an fsync() call, +** want to minimize the number ot times it is called. After an fsync() call, ** we are free to write dirty pages back to the database. It is best ** to go ahead and write as many dirty pages as possible to minimize ** the risk of having to do another fsync() later on. Writing dirty @@ -1234,7 +1234,7 @@ int *sqlitepager_stats(Pager *pPager){ ** ** This routine should be called with the transaction journal already ** open. A new checkpoint journal is created that can be used to rollback -** changes of a single command within a larger transaction. +** changes of a single SQL command within a larger transaction. */ int sqlitepager_ckpt_begin(Pager *pPager){ int rc; |