aboutsummaryrefslogtreecommitdiff
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
parent998147ec38ce64fff6307891b067192d2c089097 (diff)
downloadsqlite-c9fb38e7adf81cd7ca2b1af4f64bb5787c7dad05.tar.gz
sqlite-c9fb38e7adf81cd7ca2b1af4f64bb5787c7dad05.zip
Fix spacing typo in comment. No changes to code.
FossilOrigin-Name: 3a18526fc2253658dad84c5e600481c8a62efe40
-rw-r--r--manifest14
-rw-r--r--manifest.uuid2
-rw-r--r--src/wal.c2
3 files changed, 9 insertions, 9 deletions
diff --git a/manifest b/manifest
index 32f43abba..a92f8a6ff 100644
--- a/manifest
+++ b/manifest
@@ -1,5 +1,5 @@
-C Add\sthe\snBackfillAttempted\sfield\sin\sformerly\sunused\sspace\sin\sWalCkptInfo\sand\nuse\sthat\sfield\sto\sclose\sthe\srace\scondition\son\sopening\sa\ssnapshot.
-D 2015-12-10T02:15:03.333
+C Fix\sspacing\stypo\sin\scomment.\s\sNo\schanges\sto\scode.
+D 2015-12-10T03:16:47.044
F Makefile.in 28bcd6149e050dff35d4dcfd97e890cd387a499d
F Makefile.linux-gcc 7bc79876b875010e8c8f9502eb935ca92aa3c434
F Makefile.msc e8fdca1cb89a1b58b5f4d3a130ea9a3d28cb314d
@@ -415,7 +415,7 @@ F src/vdbesort.c a7ec02da4494c59dfd071126dd3726be5a11459d
F src/vdbetrace.c 8befe829faff6d9e6f6e4dee5a7d3f85cc85f1a0
F src/vtab.c 2a8b44aa372c33f6154208e7a7f6c44254549806
F src/vxworks.h c18586c8edc1bddbc15c004fa16aeb1e1342b4fb
-F src/wal.c 115765a38fa4a03d7334b6ba77db0cedae682eb0
+F src/wal.c 964af61902acead7de6e95035d0ce597f7019da9
F src/wal.h 907943dfdef10b583e81906679a347e0ec6f1b1b
F src/walker.c 2e14d17f592d176b6dc879c33fbdec4fbccaa2ba
F src/where.c b18edbb9e5afabb77f4f27550c471c5c824e0fe7
@@ -1409,7 +1409,7 @@ F tool/vdbe_profile.tcl 246d0da094856d72d2c12efec03250d71639d19f
F tool/warnings-clang.sh f6aa929dc20ef1f856af04a730772f59283631d4
F tool/warnings.sh 48bd54594752d5be3337f12c72f28d2080cb630b
F tool/win/sqlite.vsix deb315d026cc8400325c5863eef847784a219a2f
-P 7315f7cbf4179aadda0f1a0baa1526a9b9f9729f
-R 70ffd1e2449a67c034eb4185ab7bdad1
-U drh
-Z 159fdbba63f7473f88a04e9240766d6d
+P cb68e9d0738fc7db7316947b4d2aab91aae819f2
+R 76ea636367cbd8afb53a2670ba03ae31
+U mistachkin
+Z 1d7611d28a33701f209bc754328c05f3
diff --git a/manifest.uuid b/manifest.uuid
index 028205ec4..d5273835a 100644
--- a/manifest.uuid
+++ b/manifest.uuid
@@ -1 +1 @@
-cb68e9d0738fc7db7316947b4d2aab91aae819f2 \ No newline at end of file
+3a18526fc2253658dad84c5e600481c8a62efe40 \ No newline at end of file
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.
**