diff options
author | drh <> | 2023-02-18 20:31:26 +0000 |
---|---|---|
committer | drh <> | 2023-02-18 20:31:26 +0000 |
commit | 1603f7edee60b23d91dcce61ff5bbf86b596bc85 (patch) | |
tree | 68b483de35fb722d52f0639f60489a148606bdc0 /src | |
parent | 3c7e90b89472f100a5f9608b4899bb801bec465b (diff) | |
download | sqlite-1603f7edee60b23d91dcce61ff5bbf86b596bc85.tar.gz sqlite-1603f7edee60b23d91dcce61ff5bbf86b596bc85.zip |
Fix stale requirement marks and fix a typo in the documentation for
sqlite3_preupdate_hook().
FossilOrigin-Name: 655991f5d9afdd3281049eb430921046e0ba90eef215020c2fb149adc0d3c4c5
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 ca20e2798..e37ce840d 100644 --- a/src/sqlite.h.in +++ b/src/sqlite.h.in @@ -10123,7 +10123,7 @@ int sqlite3_db_cacheflush(sqlite3*); ** function is not defined for operations on WITHOUT ROWID tables, or for ** DELETE operations on rowid tables. ** -** ^The sqlite3_update_hook(D,C,P) function returns the P argument from +** ^The sqlite3_preupdate_hook(D,C,P) function returns the P argument from ** the previous call on the same [database connection] D, or NULL for ** the first call on D. ** |