diff options
author | dan <dan@noemail.net> | 2020-09-17 21:11:25 +0000 |
---|---|---|
committer | dan <dan@noemail.net> | 2020-09-17 21:11:25 +0000 |
commit | 68cffa65fba2f59d91e1da582e2a0b0fa7a4211a (patch) | |
tree | ea2834676714e869d7c7b8aa8b6cfcb15df971b1 /src | |
parent | 39c7125a97bedcfa152aef8451dd2e6d258b6508 (diff) | |
download | sqlite-68cffa65fba2f59d91e1da582e2a0b0fa7a4211a.tar.gz sqlite-68cffa65fba2f59d91e1da582e2a0b0fa7a4211a.zip |
Fix a typo in the documentation comment for sqlite3_preupdate_hook().
FossilOrigin-Name: 4542d194e2fef5e21e1c3679914bd9e21fab31cfb111cf640524fb3514a8afa3
Diffstat (limited to 'src')
-rw-r--r-- | src/sqlite.h.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sqlite.h.in b/src/sqlite.h.in index be940e019..1ea1f4322 100644 --- a/src/sqlite.h.in +++ b/src/sqlite.h.in @@ -9471,7 +9471,7 @@ int sqlite3_db_cacheflush(sqlite3*); ** seventh parameter is the final rowid value of the row being inserted ** or updated. The value of the seventh parameter passed to the callback ** function is not defined for operations on WITHOUT ROWID tables, or for -** INSERT operations on rowid tables. +** DELETE operations on rowid tables. ** ** The [sqlite3_preupdate_old()], [sqlite3_preupdate_new()], ** [sqlite3_preupdate_count()], and [sqlite3_preupdate_depth()] interfaces |