aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authormistachkin <mistachkin@noemail.net>2015-12-10 03:16:47 +0000
committermistachkin <mistachkin@noemail.net>2015-12-10 03:16:47 +0000
commitc9fb38e7adf81cd7ca2b1af4f64bb5787c7dad05 (patch)
treed51116497b7be77aa857fee941b68ec3ec338970 /src
parent998147ec38ce64fff6307891b067192d2c089097 (diff)
downloadsqlite-c9fb38e7adf81cd7ca2b1af4f64bb5787c7dad05.tar.gz
sqlite-c9fb38e7adf81cd7ca2b1af4f64bb5787c7dad05.zip
Fix spacing typo in comment. No changes to code.
FossilOrigin-Name: 3a18526fc2253658dad84c5e600481c8a62efe40
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 784f993bf..0115e0602 100644
--- a/src/wal.c
+++ b/src/wal.c
@@ -332,7 +332,7 @@ struct WalIndexHdr {
** nBackfillAttempted is the largest value of nBackfill that a checkpoint
** has attempted to achieve. Normally nBackfill==nBackfillAtempted, however
** the nBackfillAttempted is set before any backfilling is done and the
-** nBackfill is only set afte rall backfilling completes. So if a checkpoint
+** nBackfill is only set after all backfilling completes. So if a checkpoint
** crashes, nBackfillAttempted might be larger than nBackfill. The
** WalIndexHdr.mxFrame must never be less than nBackfillAttempted.
**