1
0
mirror of https://github.com/sqlite/sqlite.git synced 2026-01-06 08:01:16 +03:00

Fix a couple of typos in comments in analyze.c.

FossilOrigin-Name: ae31dc67aa0637150f964de31a6da6f5797b462a
This commit is contained in:
dan
2011-08-15 12:02:21 +00:00
parent 4e50c5ec48
commit 23e7c4de7b
3 changed files with 10 additions and 10 deletions

View File

@@ -65,7 +65,7 @@
** the index belongs. There are usually 10 rows in the sqlite_stat2
** table for each index.
**
** The sqlite_stat2 entires for an index that have sampleno between 0 and 9
** The sqlite_stat2 entries for an index that have sampleno between 0 and 9
** inclusive are samples of the left-most key value in the index taken at
** evenly spaced points along the index. Let the number of samples be S
** (10 in the standard build) and let C be the number of rows in the index.
@@ -92,7 +92,7 @@
** columns which hold the approximate number of rows in the table that
** exactly match the sample, the approximate number of rows with values
** less than the sample, and the approximate number of distinct key values
** less than the sample, respectively. (3) The number of samples can very
** less than the sample, respectively. (3) The number of samples can vary
** from one table to the next; the sample count does not have to be
** exactly 10 as it is with sqlite_stat2.
**