]> git.ipfire.org Git - thirdparty/sqlite.git/commitdiff
Fix typos in the format description comment of analyze.c.
authordrh <drh@noemail.net>
Fri, 23 Sep 2011 13:25:03 +0000 (13:25 +0000)
committerdrh <drh@noemail.net>
Fri, 23 Sep 2011 13:25:03 +0000 (13:25 +0000)
FossilOrigin-Name: 74e27fad339a2d7899c1f42805e615128929f07a

manifest
manifest.uuid
src/analyze.c

index 77fc4add6ca8733de7a1250a99bab923294ce3ed..46ae41ea868845b587454969b0ed5d67b5e1113b 100644 (file)
--- a/manifest
+++ b/manifest
@@ -1,5 +1,5 @@
-C Remove\sthe\srestriction\son\sthe\snumber\sof\sentries\sper\sindex\sin\ssqlite_stat3.
-D 2011-09-22T20:52:56.063
+C Fix\stypos\sin\sthe\sformat\sdescription\scomment\sof\sanalyze.c.
+D 2011-09-23T13:25:03.244
 F Makefile.arm-wince-mingw32ce-gcc d6df77f1f48d690bd73162294bbba7f59507c72f
 F Makefile.in d314143fa6be24828021d3f583ad37d9afdce505
 F Makefile.linux-gcc 91d710bdc4998cb015f39edf3cb314ec4f4d7e23
@@ -118,7 +118,7 @@ F sqlite.pc.in 42b7bf0d02e08b9e77734a47798d1a55a9e0716b
 F sqlite3.1 6be1ad09113570e1fc8dcaff84c9b0b337db5ffc
 F sqlite3.pc.in ae6f59a76e862f5c561eb32a380228a02afc3cad
 F src/alter.c ac80a0f31189f8b4a524ebf661e47e84536ee7f5
-F src/analyze.c f2b6e33f13ea763fa26425ac2f37249c56153ccd
+F src/analyze.c 775421ced0bd78181cc206fbc63063658066c1da
 F src/attach.c 12c6957996908edc31c96d7c68d4942c2474405f
 F src/auth.c 523da7fb4979469955d822ff9298352d6b31de34
 F src/backup.c 28a4fe55327ff708bfaf9d4326d02686f7a553c3
@@ -965,7 +965,7 @@ F tool/symbols.sh caaf6ccc7300fd43353318b44524853e222557d5
 F tool/tostr.awk e75472c2f98dd76e06b8c9c1367f4ab07e122d06
 F tool/vdbe-compress.tcl d70ea6d8a19e3571d7ab8c9b75cba86d1173ff0f
 F tool/warnings.sh fbc018d67fd7395f440c28f33ef0f94420226381
-P 3ca7e449e2e20d95e516cf7fe87bfa0b51c07086
-R c105c04b0bf619f9bd8e7351a02bbd18
+P 374343c8ad53829c4ad715ed623d16635797de9a
+R e7e1b2a1114af9230eb2e44197ed5da5
 U drh
-Z 3b0d1caf0749877c04e96ab7e0587090
+Z 6b4c74838ff582a42303843c6a42764e
index b087a18354688832c098343cd399dc4c1bb60035..06cafe1e0c8e207b9c18f619babd46726a5b03c3 100644 (file)
@@ -1 +1 @@
-374343c8ad53829c4ad715ed623d16635797de9a
\ No newline at end of file
+74e27fad339a2d7899c1f42805e615128929f07a
\ No newline at end of file
index b98968a9e3be6dac7c122722efea4e81fa01bd81..88a7761ed63a224c7530ffebe1f3e8883a51c6ec 100644 (file)
@@ -94,9 +94,9 @@
 ** the left-most column of the index.  The nEq column is the approximate
 ** number of entires in the index whose left-most column exactly matches
 ** the sample.  nLt is the approximate number of entires whose left-most
-** column is less than the same.  The nDLt column is the approximate
+** column is less than the sample.  The nDLt column is the approximate
 ** number of distinct left-most entries in the index that are less than
-** the same.
+** the sample.
 **
 ** Future versions of SQLite might change to store a string containing
 ** multiple integers values in the nDLt column of sqlite_stat3.  The first