diff options
author | drh <> | 2023-02-07 16:58:58 +0000 |
---|---|---|
committer | drh <> | 2023-02-07 16:58:58 +0000 |
commit | 9d6725c651f2787ae6b211b8b422edb5239cd9d2 (patch) | |
tree | da4e551b1d53caaeb00a4b3cdd2e3fa90d208f05 /src | |
parent | 9f29998d2a8890d58b52d13605324193703525c3 (diff) | |
download | sqlite-9d6725c651f2787ae6b211b8b422edb5239cd9d2.tar.gz sqlite-9d6725c651f2787ae6b211b8b422edb5239cd9d2.zip |
Fix a typo in example documentation code for sqlite3_vtab_in_next().
FossilOrigin-Name: a95dbfae6133cc7aac950c3e7ba55a29d80b1625c39479a7d1d10b0868ee2be4
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 0ae65aa75..c297da0b6 100644 --- a/src/sqlite.h.in +++ b/src/sqlite.h.in @@ -9819,7 +9819,7 @@ int sqlite3_vtab_in(sqlite3_index_info*, int iCons, int bHandle); ** ** <blockquote><pre> ** for(rc=sqlite3_vtab_in_first(pList, &pVal); -** rc==SQLITE_OK && pVal +** rc==SQLITE_OK && pVal; ** rc=sqlite3_vtab_in_next(pList, &pVal) ** ){ ** // do something with pVal |