aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2013-07-11 19:04:23 +0000
committerdrh <drh@noemail.net>2013-07-11 19:04:23 +0000
commita95882ff39517ddcd163fe307134b2705aace26c (patch)
treeddcda0a63a630ecd477d0a57650577edff657803 /src
parentb1eaa718fdc61f87395ea92919be13e203754382 (diff)
downloadsqlite-a95882ff39517ddcd163fe307134b2705aace26c.tar.gz
sqlite-a95882ff39517ddcd163fe307134b2705aace26c.zip
Change the description of how sqlite3_progress_handler() works so that
the N parameter is "approximate". This aligns with the current implementation. This is a documentation change only. No changes to code. FossilOrigin-Name: 7d829bdea3adcda50fbe930acb4e1ce73fd874e6
Diffstat (limited to 'src')
-rw-r--r--src/sqlite.h.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sqlite.h.in b/src/sqlite.h.in
index 4d8ba21f3..eb5ffe3d4 100644
--- a/src/sqlite.h.in
+++ b/src/sqlite.h.in
@@ -2554,7 +2554,7 @@ SQLITE_EXPERIMENTAL void *sqlite3_profile(sqlite3*,
** interface is to keep a GUI updated during a large query.
**
** ^The parameter P is passed through as the only parameter to the
-** callback function X. ^The parameter N is the number of
+** callback function X. ^The parameter N is the approximate number of
** [virtual machine instructions] that are evaluated between successive
** invocations of the callback X.
**