aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2010-08-16 16:31:43 +0000
committerdrh <drh@noemail.net>2010-08-16 16:31:43 +0000
commit6cef0cf7a95253a31e8ee12d003c34d1c396f8be (patch)
treeadaca24ea139da66b44baf45aede70719f9a368c /src
parent7e9e70b17039c89133bcc707bddc5c0ac41b9523 (diff)
downloadsqlite-6cef0cf7a95253a31e8ee12d003c34d1c396f8be.tar.gz
sqlite-6cef0cf7a95253a31e8ee12d003c34d1c396f8be.zip
Fix a typo in a comment in wal.c. No code changes.
FossilOrigin-Name: d854a3d41c68f785c909c159cd9ca2154c64001a
Diffstat (limited to 'src')
-rw-r--r--src/wal.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wal.c b/src/wal.c
index 07c1e2d2e..12b5b73c4 100644
--- a/src/wal.c
+++ b/src/wal.c
@@ -1706,7 +1706,7 @@ static int walIndexTryHdr(Wal *pWal, int *pChanged){
/* The first page of the wal-index must be mapped at this point. */
assert( pWal->nWiData>0 && pWal->apWiData[0] );
- /* Read the header. This might happen currently with a write to the
+ /* Read the header. This might happen concurrently with a write to the
** same area of shared memory on a different CPU in a SMP,
** meaning it is possible that an inconsistent snapshot is read
** from the file. If this happens, return non-zero.