1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-05 15:55:57 +03:00

Fix a typo in a comment in wal.c. No code changes.

FossilOrigin-Name: d854a3d41c68f785c909c159cd9ca2154c64001a
This commit is contained in:
drh
2010-08-16 16:31:43 +00:00
parent 7e9e70b170
commit 6cef0cf7a9
3 changed files with 11 additions and 11 deletions

View File

@@ -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.